1 | <?php |
||
13 | class Parser |
||
14 | { |
||
15 | const PROCESS_TIMEOUT = 60; |
||
16 | const PROCESS_COMMAND = 'vendor/bin/php-sqllint -'; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $rootPath; |
||
20 | |||
21 | |||
22 | |||
23 | /** |
||
24 | * @param string $rootPath |
||
25 | */ |
||
26 | 2 | public function __construct($rootPath) |
|
30 | |||
31 | |||
32 | |||
33 | /** |
||
34 | * @param Candidate $candidate |
||
35 | * @return array |
||
36 | */ |
||
37 | 1 | public function execute(Candidate $candidate) |
|
54 | } |
||
55 |