,error_levels?:string[]}> */ public function providerValidCodeParse() { return [ 'deprecatedMethod' => [ ' [ ' [ ' */ public function providerInvalidCodeParse() { return [ 'deprecatedMethodWithCall' => [ ' 'DeprecatedMethod', ], 'deprecatedClassWithStaticCall' => [ ' 'DeprecatedClass', ], 'deprecatedClassWithNew' => [ ' 'DeprecatedClass', ], 'deprecatedClassWithExtends' => [ ' 'DeprecatedClass', ], 'deprecatedPropertyGet' => [ 'foo;', 'error_message' => 'DeprecatedProperty', ], 'deprecatedPropertySet' => [ 'foo = 5;', 'error_message' => 'DeprecatedProperty', ], 'deprecatedClassConstant' => [ ' 'DeprecatedClass', ], 'deprecatedClassStringConstant' => [ ' 'DeprecatedClass', ], 'deprecatedClassAsParam' => [ ' 'DeprecatedClass', ], ]; } }