1 | <?php |
||
14 | class DiffCommand extends Command |
||
15 | { |
||
16 | /** |
||
17 | * The name and signature of the console command. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $signature = 'env:diff'; |
||
22 | |||
23 | /** |
||
24 | * The console command description. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $description = 'Show the difference between env files'; |
||
29 | |||
30 | /** |
||
31 | * @var ReaderInterface |
||
32 | */ |
||
33 | private $reader; |
||
34 | |||
35 | |||
36 | /** |
||
37 | * Create a new command instance. |
||
38 | * |
||
39 | * @param ReaderInterface $reader |
||
40 | */ |
||
41 | public function __construct(ReaderInterface $reader) |
||
46 | |||
47 | /** |
||
48 | * Execute the console command. |
||
49 | * |
||
50 | * @return mixed |
||
51 | */ |
||
52 | public function handle() |
||
73 | } |
||
74 |