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