{"record":{"id":"0b93e8de8f5467bd","repo":"filamentphp/filament","slug":"method-s-s-does-not-exist","errorCode":null,"errorMessage":"Method %s::%s does not exist.","messagePattern":"Method (.+?)::(.+?) does not exist\\.","errorType":"exception","errorClass":"BadMethodCallException","httpStatus":null,"severity":"error","filePath":"packages/support/src/Concerns/Macroable.php","lineNumber":55,"sourceCode":"    public static function flushMacros(): void\n    {\n        static::$macros = [];\n    }\n\n    public static function hasMacro(string $name): bool\n    {\n        return (bool) static::getMacro($name);\n    }\n\n    /**\n     * @param  array<array-key>  $parameters\n     */\n    public static function __callStatic(string $method, array $parameters): mixed\n    {\n        $macro = static::getMacro($method);\n\n        if ($macro === null) {\n            throw new BadMethodCallException(sprintf(\n                'Method %s::%s does not exist.',\n                static::class,\n                $method,\n            ));\n        }\n\n        if ($macro instanceof Closure) {\n            $macro = $macro->bindTo(null, static::class);\n        }\n\n        return $macro(...$parameters);\n    }\n\n    /**\n     * @param  array<array-key>  $parameters\n     */\n    public function __call(string $method, array $parameters): mixed\n    {","sourceCodeStart":37,"sourceCodeEnd":73,"githubUrl":"https://github.com/filamentphp/filament/blob/53483fa9340e4ec637985fe454ebb58afb92ea24/packages/support/src/Concerns/Macroable.php#L37-L73","documentation":"Error \"Method %s::%s does not exist.\" thrown in filamentphp/filament.","triggerScenarios":"Thrown at packages/support/src/Concerns/Macroable.php:55 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"53483fa9340e4ec637985fe454ebb58afb92ea24","analyzedAt":"2026-08-17T02:06:23.049Z","schemaVersion":2},"datasetVersion":"2026-08-17T04:17:16.089Z"}