Пример #1
0
 public function testSupports()
 {
     $this->assertTrue($this->php->supports('test.php'));
 }
 /**
  * Checks whether a given file is to be stripped or not
  * Configuration file are left as is.
  *
  * @param string $file
  *
  * @return bool
  */
 public function supports($file)
 {
     return dirname($file) !== 'src/config' && parent::supports($file);
 }