*/ public function providerValidCodeParse() { return [ 'fixMismatchingDocblockParamType70' => [ ' [ ' [ 'fooFoo("hello");', 'fooFoo("hello");', '7.1', ['MissingParamType'], true, ], 'noBoolParamTypeWithDefault' => [ 'fooFoo(false);', 'fooFoo(false);', '7.1', ['MissingParamType'], true, ], 'noStringParamTypeParent' => [ 'fooFoo("hello");', 'fooFoo("hello");', '7.1', ['MissingParamType'], true, ], 'stringParamTypeNoOp' => [ 'fooFoo("hello");', 'fooFoo("hello");', '7.1', ['MissingParamType'], true, ], ]; } }