Total Complexity | 4 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class ListEntitiesCommand extends Command |
||
16 | { |
||
17 | /** |
||
18 | * The name and signature of the console command. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $signature = 'rabbitmq:list'; |
||
23 | |||
24 | /** |
||
25 | * The console command description. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'List all entities by type: producers|consumers'; |
||
30 | |||
31 | /** |
||
32 | * @var Container |
||
33 | */ |
||
34 | private $container; |
||
35 | |||
36 | /** |
||
37 | * CreateEntitiesCommand constructor. |
||
38 | * |
||
39 | * @param Container $container |
||
40 | */ |
||
41 | public function __construct(Container $container) |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * Execute the console command. |
||
49 | */ |
||
50 | public function handle() |
||
80 |