1 | <?php namespace Arcanedev\LaravelMetrics; |
||
12 | class MetricServiceProvider extends PackageServiceProvider |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Package name. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $package = 'metrics'; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Main Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Register the service provider. |
||
33 | */ |
||
34 | 180 | public function register() |
|
42 | |||
43 | /** |
||
44 | * Boot the service provider. |
||
45 | */ |
||
46 | 180 | public function boot() |
|
50 | |||
51 | /** |
||
52 | * Get the services provided by the provider. |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | 4 | public function provides(): array |
|
62 | } |
||
63 |
Let’s assume that you have a directory layout like this:
and let’s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: