1 | <?php |
||
8 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * @var Config |
||
12 | */ |
||
13 | protected $config; |
||
14 | |||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | public function __construct($app) |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function register() |
||
52 | |||
53 | /** |
||
54 | * Get files to be published. |
||
55 | * |
||
56 | * @return array |
||
57 | */ |
||
58 | protected function getPublished() |
||
67 | |||
68 | /** |
||
69 | * Verify whether anything should be logged. |
||
70 | * |
||
71 | * @return bool |
||
72 | */ |
||
73 | protected function shouldLogAnything() |
||
77 | } |
||
78 |