*/ public function provideEqualsData(): Generator { yield [true, 'hello', 'hello']; yield [false, 'hey', 'hello']; yield [false, 'hello', 'hey']; } }