PHPSpec2\Listener\ClassNotFoundListener::__construct PHP Method

__construct() public method

public __construct ( IO $io, $path )
$io PHPSpec2\Console\IO
    public function __construct(IO $io, $path)
    {
        $this->io = $io;
        if ($path == '') {
            $this->path = $path;
        } else {
            $this->path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
        }
    }