assertSame($result, (new AppsGoogleCom())->isSupported(new Email('Jane.Doe@' . $domain, true))); } public function providerIsSupported() : array { return [ ['example.com', false], ['EXAMPLE.COM', false], ['krukowski.me', true], ['KRUKOWSKI.ME', true], ]; } }