コード例 #1
0
ファイル: coverage.php プロジェクト: xihewang/atoum
 protected function isExcluded(\reflectionClass $class)
 {
     $className = $class->getName();
     if ($this->isInExcludedClasses($className) === true || $this->isInExcludedNamespaces($className) === true) {
         return true;
     } else {
         $fileName = $class->getFileName();
         return $fileName === false || $this->isInExcludedDirectories($fileName) === true;
     }
 }