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

recordMethodCall() protected static method

records method call for given path
protected static recordMethodCall ( string $method, string $path )
$method string
$path string
    protected static function recordMethodCall($method, $path)
    {
        if (isset(self::$calledMethods[$path]) === false) {
            self::$calledMethods[$path] = array();
        }
        self::$calledMethods[$path][] = $method;
    }