| 1 | <?php |
||
| 10 | class BeesServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Indicates if loading of the provider is deferred. |
||
| 14 | * |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | protected $defer = false; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Bootstrap the application events. |
||
| 21 | */ |
||
| 22 | public function boot() |
||
| 25 | |||
| 26 | protected function registerFields() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the service provider. |
||
| 43 | */ |
||
| 44 | public function register() |
||
| 48 | } |
||
| 49 |
It seems like you are assigning to a variable which was imported through a
usestatement which was not imported by reference.For clarity, we suggest to use a different name or import by reference depending on whether you would like to have the change visibile in outer-scope.
Change not visible in outer-scope
Change visible in outer-scope