We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c878d5 commit 72fce8dCopy full SHA for 72fce8d
src/DataCollector/FilesCollector.php
@@ -4,18 +4,18 @@
4
5
use DebugBar\DataCollector\DataCollector;
6
use DebugBar\DataCollector\Renderable;
7
-use Illuminate\Contracts\Foundation\Application;
+use Illuminate\Container\Container;
8
9
class FilesCollector extends DataCollector implements Renderable
10
{
11
- /** @var \Illuminate\Contracts\Foundation\Application */
+ /** @var \Illuminate\Container\Container */
12
protected $app;
13
protected $basePath;
14
15
/**
16
- * @param \Illuminate\Contracts\Foundation\Application $app
+ * @param \Illuminate\Container\Container $app
17
*/
18
- public function __construct(Application $app = null)
+ public function __construct(Container $app = null)
19
20
$this->app = $app;
21
$this->basePath = base_path();
0 commit comments