1 | <?php namespace Modules\Core\Console\Installers\Scripts; |
||
8 | class ProtectInstaller implements SetupScript |
||
9 | { |
||
10 | /** |
||
11 | * @var Filesystem |
||
12 | */ |
||
13 | protected $finder; |
||
14 | |||
15 | /** |
||
16 | * @param Filesystem $finder |
||
17 | */ |
||
18 | public function __construct(Filesystem $finder) |
||
22 | |||
23 | /** |
||
24 | * Fire the install script |
||
25 | * @param Command $command |
||
26 | * @return mixed |
||
27 | * @throws Exception |
||
28 | */ |
||
29 | public function fire(Command $command) |
||
35 | } |
||
36 |