Skip to content

Commit

Permalink
Add void return type to ServiceProvider stub (#70)
Browse files Browse the repository at this point in the history
* Add void return type to ServiceProvider stub

* Code style

---------

Co-authored-by: Chris Morrell <[email protected]>
  • Loading branch information
thearyanahmed and inxilpro authored Apr 3, 2024
1 parent e13026c commit fe21d75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

class StubClassNamePrefixServiceProvider extends ServiceProvider
{
public function register()
public function register(): void
{
}

public function boot()
public function boot(): void
{
}
}

0 comments on commit fe21d75

Please sign in to comment.