org\bovigo\vfs\vfsStreamWrapperRecordingProxy::getMethodCalls PHP Méthode

getMethodCalls() public static méthode

returns recorded method calls for given path
public static getMethodCalls ( string $path ) : array
$path string
Résultat array
    public static function getMethodCalls($path)
    {
        if (isset(self::$calledMethods[$path]) === true) {
            return self::$calledMethods[$path];
        }
        return array();
    }