12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /*
- * This file is part of the PHP CS utility.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\CS;
- use Symfony\Component\Process\Process;
- use Symfony\Component\Process\ProcessUtils;
- /**
- * Handle PHP code linting process.
- *
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- */
- class LintManager
- {
- /**
- * Temporary file for code linting.
- *
- * @var string|null
- */
- private $temporaryFile;
- public function __destruct()
- {
- if (null !== $this->temporaryFile) {
- unlink($this->temporaryFile);
- }
- }
- /**
- * Create process that lint PHP file.
- *
- * @param string $path path to file
- *
- * @return Process
- */
- public function createProcessForFile($path)
- {
- // in case php://stdin
- if (!is_file($path)) {
- return $this->createProcessForSource(file_get_contents($path));
- }
- $process = new Process('php -l '.ProcessUtils::escapeArgument($path));
- $process->setTimeout(null);
- $process->run();
- return $process;
- }
- /**
- * Create process that lint PHP code.
- *
- * @param string $source code
- *
- * @return Process
- */
- public function createProcessForSource($source)
- {
- if (null === $this->temporaryFile) {
- $this->temporaryFile = tempnam('.', 'tmp');
- }
- file_put_contents($this->temporaryFile, $source);
- return $this->createProcessForFile($this->temporaryFile);
- }
- }
|