function names are correctly normalized but method names are not: ``` <?php class A { public static function a() {} // <-- This does not get normalized } A::a(); // <-- This does not get normalized ```