PPI\Framework\Autoload::exists PHP Method

exists() public static method

Check if a namespace has been registered. This is a workaround as the default self::$_options['loader'] class does not have an exists() method.
public static exists ( string $key ) : boolean
$key string
return boolean
    public static function exists($key)
    {
        return isset(self::$_registeredNamespaces[$key]);
    }