@@ -24,6 +24,9 @@ |
||
24 | 24 | "route_prefix", |
25 | 25 | ]; |
26 | 26 | |
27 | + /** |
|
28 | + * @param string $file |
|
29 | + */ |
|
27 | 30 | public function __construct(BrandingCommand $command, $file) |
28 | 31 | { |
29 | 32 | $this->command = $command; |
@@ -19,6 +19,9 @@ |
||
19 | 19 | "BACKPACK_REGISTRATION_OPEN", |
20 | 20 | ]; |
21 | 21 | |
22 | + /** |
|
23 | + * @param string $env |
|
24 | + */ |
|
22 | 25 | public function __construct(BrandingCommand $command, $env) |
23 | 26 | { |
24 | 27 | $this->command = $command; |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Zoutapps\Laravel\Backpack\Branding\Services; |
4 | 4 | |
5 | -use Illuminate\Support\Collection; |
|
6 | 5 | use Zoutapps\Laravel\Backpack\Branding\Commands\BrandingCommand; |
7 | 6 | use Zoutapps\Laravel\Backpack\Branding\Traits\ValueReplacerTrait; |
8 | 7 |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Zoutapps\Laravel\Backpack\Branding\Services; |
4 | 4 | |
5 | 5 | use Illuminate\Filesystem\Filesystem; |
6 | -use Illuminate\Support\Facades\Storage; |
|
7 | 6 | use Zoutapps\Laravel\Backpack\Branding\Commands\BrandingCommand; |
8 | 7 | use Zoutapps\Laravel\Backpack\Branding\Helper\ShortSyntaxArray; |
9 | 8 |