readList example

private $files;

    /** * @param string $basePath * @param string $sourceFile */
    public function __construct($basePath$sourceFile)
    {
        $this->basePath = rtrim($basePath, '/') . '/';
        $this->sourceFile = $sourceFile;

        $this->files = $this->readList($sourceFile);
    }

    public function addFile($file)
    {
        $this->files[] = $file;
    }

    /** * @return RequirementsPathResult */
    public function check()
    {
Home | Imprint | This part of the site doesn't use cookies.