mageekguy\atoum\mock\stream::findControllerForStream PHP 메소드

findControllerForStream() 보호된 정적인 메소드

protected static findControllerForStream ( $path )
    protected static function findControllerForStream($path)
    {
        foreach (static::$streams as $stream) {
            if ($stream->getPath() === $path) {
                return $stream;
            }
        }
        return null;
    }