Skip to content

DeprecatedMethod

A method marked @deprecated is being called.

<?php
class Api {
/** @deprecated Use newMethod() instead */
public function oldMethod(): void {}
}
$api = new Api();
$api->oldMethod(); // deprecated

Switch to the recommended replacement method.