Completed
Push — master ( 23bc19...2eec4d )
by Tomáš
11:42
created

ContainerFactory::create()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 6
cts 6
cp 1
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 0
crap 1
1
<?php
2
3
/*
4
 * This file is part of Symplify
5
 * Copyright (c) 2016 Tomas Votruba (http://tomasvotruba.cz).
6
 */
7
8
namespace Symplify\PHP7_CodeSniffer\DI;
9
10
use Nette\Configurator;
11
use Nette\DI\Container;
12
use Nette\Utils\FileSystem;
13
14
final class ContainerFactory
15
{
16 1
    public function create() : Container
17
    {
18 1
        $configurator = new Configurator();
19 1
        $configurator->setDebugMode(true);
20 1
        $configurator->setTempDirectory($this->createAndReturnTempDir());
21 1
        $configurator->addConfig(__DIR__ . '/../config/config.neon');
22
23 1
        return $configurator->createContainer();
24
    }
25
26 1
    private function createAndReturnTempDir() : string
27
    {
28 1
        $tempDir = sys_get_temp_dir() . '/php7_codesniffer';
29 1
        FileSystem::delete($tempDir);
30 1
        FileSystem::createDir($tempDir);
31
32 1
        return $tempDir;
33
    }
34
}
35