DeprecatedMethod
A method marked @deprecated is being called.
Example
Section titled “Example”<?phpclass Api { /** @deprecated Use newMethod() instead */ public function oldMethod(): void {}}
$api = new Api();$api->oldMethod(); // deprecatedHow to fix
Section titled “How to fix”Switch to the recommended replacement method.