Passed
Push — master ( d2eb9a...9329b9 )
by SignpostMarv
03:24
created

FastRouteCacheCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 6
nc 1
nop 0
dl 0
loc 8
ccs 7
cts 7
cp 1
crap 1
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
* @author SignpostMarv
4
*/
5
declare(strict_types=1);
6
7
namespace SignpostMarv\DaftFramework\Symfony\Console\Command;
8
9
use SignpostMarv\DaftRouter\Router\Compiler;
10
use Symfony\Component\Console\Input\InputArgument;
11
use Symfony\Component\Console\Input\InputInterface;
12
use Symfony\Component\Console\Output\OutputInterface;
13
14
class FastRouteCacheCommand extends Command
15
{
16
    /**
17
    * @var string
18
    */
19
    protected static $defaultName = 'daft-framework:router:update-cache';
20
21 2
    public function execute(InputInterface $input, OutputInterface $output) : int
22
    {
23 2
        $cacheFilename = tempnam(sys_get_temp_dir(), static::class);
24 2
        unlink($cacheFilename);
25
26 2
        $cacheFilename .= '.cache';
27
28
        /**
29
        * @var string[] $sources
30
        */
31 2
        $sources = $input->getArgument('sources');
32
33 2
        Compiler::ObtainDispatcher(['cacheFile' => $cacheFilename], ...$sources);
34
35 2
        $output->write(file_get_contents($cacheFilename));
36
37 2
        unlink($cacheFilename);
38
39 2
        return 0;
40
    }
41
42 4
    protected function configure() : void
43
    {
44 4
        $this->setDescription(
45 4
            'Update the cache used by the daft framework router'
46 4
        )->addArgument(
47 4
            'sources',
48 4
            InputArgument::REQUIRED | InputArgument::IS_ARRAY,
49 4
            'class names for sources'
50
        );
51 4
    }
52
}
53