We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 189abc2 + 3f067b0 commit 67bb943Copy full SHA for 67bb943
src/Providers/PackageServiceProvider.php
@@ -10,7 +10,6 @@
10
use Illuminate\Routing\Router;
11
use Illuminate\Support\ServiceProvider;
12
use Illuminate\Support\Str;
13
-use ReflectionClass;
14
15
class PackageServiceProvider extends ServiceProvider
16
{
@@ -78,7 +77,7 @@ public function provides()
78
77
protected function getPath($path = '')
79
80
// We get the child class
81
- $rc = new ReflectionClass(get_class($this));
+ $rc = new \ReflectionClass(get_class($this));
82
83
return dirname($rc->getFileName()) . '/../../' . $path;
84
}
0 commit comments