Exemple #1
0
 public function __construct(array $input, $pathToSassc = null)
 {
     $this->command = $pathToSassc;
     if (!$this->command) {
         $this->command = $this->findExecutable('sassc');
     }
     if (!$this->command) {
         throw new TaskException(__CLASS__, 'Sassc executable not found.');
     }
     parent::__construct($input);
 }