ProcessBlockFile   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 4
eloc 15
dl 0
loc 31
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A __invoke() 0 22 3
1
<?php
2
3
namespace HotRodCli\Processors;
4
5
use HotRodCli\AppContainer;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
use Symfony\Component\Console\Application;
9
use Symfony\Component\Console\Input\ArrayInput;
10
11
class ProcessBlockFile
12
{
13
    protected $appContainer;
14
15
    public function __construct(AppContainer $appContainer)
16
    {
17
        $this->appContainer = $appContainer;
18
    }
19
20
    public function __invoke(InputInterface $input, OutputInterface $output)
21
    {
22
        if (!$input->getOption('no-block')) {
23
            $controller = explode('/', $input->getArgument('route'));
24
            $app = $this->appContainer;
25
26
            /** @var Application $application */
27
            $application = $app->resolve(Application::class);
28
            $command = $application->find('create:block');
29
30
            $inputs = [
31
                'namespace' => $input->getArgument('namespace'),
32
                'blockname' => $controller[1]
33
            ];
34
35
            if ($input->getOption('admin')) {
36
                $inputs['--admin'] = 'true';
37
            }
38
39
            $greetInput = new ArrayInput($inputs);
40
            //$greetInput = $app->resolve(ArrayInput::class, $inputs);
41
            $command->run($greetInput, $output);
42
        }
43
    }
44
}
45