Sstalle\php7cc\PathCheckSettings::getCheckedPaths PHP Метод

getCheckedPaths() публичный Метод

public getCheckedPaths ( ) : array
Результат array
    public function getCheckedPaths()
    {
        return $this->checkedPaths;
    }

Usage Example

Пример #1
0
 /**
  * @param PathCheckSettings $checkSettings
  */
 public function check(PathCheckSettings $checkSettings)
 {
     $this->visitorResolver->setLevel($checkSettings->getMessageLevel());
     foreach ($this->visitorResolver->resolve() as $visitor) {
         $this->traverser->addVisitor($visitor);
     }
     $this->pathChecker->check($this->pathTraversableFactory->createTraversable($checkSettings->getCheckedPaths(), $checkSettings->getCheckedFileExtensions(), $checkSettings->getExcludedPaths()), $checkSettings->getUseRelativePaths());
 }