PHPSpec2\Runner\Locator::getSpecifications PHP Method

getSpecifications() public method

public getSpecifications ( $path )
    public function getSpecifications($path)
    {
        $line = null;
        if (preg_match('/^(.*)\\:(\\d+)$/', $path, $matches)) {
            list($_, $path, $line) = $matches;
        }
        $path = str_replace('\\', DIRECTORY_SEPARATOR, $path);
        if ('.' !== dirname($path) && !file_exists($path) && 0 !== strpos($path, 'spec' . DIRECTORY_SEPARATOR)) {
            $path = 'spec' . DIRECTORY_SEPARATOR . $path;
        }
        $specs = array();
        if (is_dir($path)) {
            $files = Finder::create()->files()->name('*.php')->in($path);
            foreach ($files as $file) {
                if ($fromFile = $this->getSpecificationsFromFile($file, $line)) {
                    $specs = array_merge($specs, $fromFile);
                }
            }
        } elseif (is_file($path) || is_file($path = $path . '.php')) {
            $file = new SplFileInfo(realpath($path));
            if ($fromFile = $this->getSpecificationsFromFile($file, $line)) {
                $specs = array_merge($specs, $fromFile);
            }
        }
        return $specs;
    }