org\bovigo\vfs\vfsStreamWrapperRecordingProxy::getMethodCalls PHP Method

getMethodCalls() public static method

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