DeprecatedClass
A class marked @deprecated is being instantiated.
Example
Section titled “Example”<?php/** @deprecated Use NewMailer instead */class OldMailer {}
$m = new OldMailer(); // deprecatedHow to fix
Section titled “How to fix”Switch to the recommended replacement class.