diff --git a/src/Appwrite/Auth/OAuth2.php b/src/Appwrite/Auth/OAuth2.php index 3956a138c1..10a81d7b6c 100644 --- a/src/Appwrite/Auth/OAuth2.php +++ b/src/Appwrite/Auth/OAuth2.php @@ -87,7 +87,7 @@ abstract class OAuth2 * * @return bool */ - abstract public function isEmailVerififed(string $accessToken): bool; + abstract public function isEmailVerified(string $accessToken): bool; /** * @param $accessToken diff --git a/src/Appwrite/Auth/OAuth2/Amazon.php b/src/Appwrite/Auth/OAuth2/Amazon.php index d100600592..c406817f36 100644 --- a/src/Appwrite/Auth/OAuth2/Amazon.php +++ b/src/Appwrite/Auth/OAuth2/Amazon.php @@ -153,7 +153,7 @@ class Amazon extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Apple.php b/src/Appwrite/Auth/OAuth2/Apple.php index a58644588c..de438c9889 100644 --- a/src/Appwrite/Auth/OAuth2/Apple.php +++ b/src/Appwrite/Auth/OAuth2/Apple.php @@ -153,7 +153,7 @@ class Apple extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Bitbucket.php b/src/Appwrite/Auth/OAuth2/Bitbucket.php index c321ca83ba..ee675d48c0 100644 --- a/src/Appwrite/Auth/OAuth2/Bitbucket.php +++ b/src/Appwrite/Auth/OAuth2/Bitbucket.php @@ -137,7 +137,7 @@ class Bitbucket extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Bitly.php b/src/Appwrite/Auth/OAuth2/Bitly.php index 0b50e9127f..4084874265 100644 --- a/src/Appwrite/Auth/OAuth2/Bitly.php +++ b/src/Appwrite/Auth/OAuth2/Bitly.php @@ -155,7 +155,7 @@ class Bitly extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Box.php b/src/Appwrite/Auth/OAuth2/Box.php index bdc7d52701..f58ce3692f 100644 --- a/src/Appwrite/Auth/OAuth2/Box.php +++ b/src/Appwrite/Auth/OAuth2/Box.php @@ -154,7 +154,7 @@ class Box extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Discord.php b/src/Appwrite/Auth/OAuth2/Discord.php index b7b58cfa9f..033150d045 100644 --- a/src/Appwrite/Auth/OAuth2/Discord.php +++ b/src/Appwrite/Auth/OAuth2/Discord.php @@ -148,7 +148,7 @@ class Discord extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Dropbox.php b/src/Appwrite/Auth/OAuth2/Dropbox.php index 592a395a31..ac03e89153 100644 --- a/src/Appwrite/Auth/OAuth2/Dropbox.php +++ b/src/Appwrite/Auth/OAuth2/Dropbox.php @@ -138,7 +138,7 @@ class Dropbox extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Facebook.php b/src/Appwrite/Auth/OAuth2/Facebook.php index 61617d0ea2..888f45caea 100644 --- a/src/Appwrite/Auth/OAuth2/Facebook.php +++ b/src/Appwrite/Auth/OAuth2/Facebook.php @@ -136,7 +136,7 @@ class Facebook extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Github.php b/src/Appwrite/Auth/OAuth2/Github.php index cdf0119d4b..d6c52d0eab 100644 --- a/src/Appwrite/Auth/OAuth2/Github.php +++ b/src/Appwrite/Auth/OAuth2/Github.php @@ -144,7 +144,7 @@ class Github extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Gitlab.php b/src/Appwrite/Auth/OAuth2/Gitlab.php index 1fa139f566..ee898e251a 100644 --- a/src/Appwrite/Auth/OAuth2/Gitlab.php +++ b/src/Appwrite/Auth/OAuth2/Gitlab.php @@ -134,7 +134,7 @@ class Gitlab extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Google.php b/src/Appwrite/Auth/OAuth2/Google.php index 70d3f9b378..bdc3b42adb 100644 --- a/src/Appwrite/Auth/OAuth2/Google.php +++ b/src/Appwrite/Auth/OAuth2/Google.php @@ -144,7 +144,7 @@ class Google extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Linkedin.php b/src/Appwrite/Auth/OAuth2/Linkedin.php index 5ff8fc42cc..92a2e32ed1 100644 --- a/src/Appwrite/Auth/OAuth2/Linkedin.php +++ b/src/Appwrite/Auth/OAuth2/Linkedin.php @@ -155,7 +155,7 @@ class Linkedin extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Microsoft.php b/src/Appwrite/Auth/OAuth2/Microsoft.php index 115756fc46..150fbda85b 100644 --- a/src/Appwrite/Auth/OAuth2/Microsoft.php +++ b/src/Appwrite/Auth/OAuth2/Microsoft.php @@ -144,7 +144,7 @@ class Microsoft extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Mock.php b/src/Appwrite/Auth/OAuth2/Mock.php index dc53041dcb..7e8848bdf9 100644 --- a/src/Appwrite/Auth/OAuth2/Mock.php +++ b/src/Appwrite/Auth/OAuth2/Mock.php @@ -137,7 +137,7 @@ class Mock extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return true; } diff --git a/src/Appwrite/Auth/OAuth2/Notion.php b/src/Appwrite/Auth/OAuth2/Notion.php index 320f9108b8..3687be0b82 100644 --- a/src/Appwrite/Auth/OAuth2/Notion.php +++ b/src/Appwrite/Auth/OAuth2/Notion.php @@ -141,7 +141,7 @@ class Notion extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Paypal.php b/src/Appwrite/Auth/OAuth2/Paypal.php index 06637b5ec7..d517c8c685 100644 --- a/src/Appwrite/Auth/OAuth2/Paypal.php +++ b/src/Appwrite/Auth/OAuth2/Paypal.php @@ -169,7 +169,7 @@ class Paypal extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $user = $this->getUser($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Salesforce.php b/src/Appwrite/Auth/OAuth2/Salesforce.php index 699cbc7581..3181657235 100644 --- a/src/Appwrite/Auth/OAuth2/Salesforce.php +++ b/src/Appwrite/Auth/OAuth2/Salesforce.php @@ -157,7 +157,7 @@ class Salesforce extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $user = $this->getUser($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Slack.php b/src/Appwrite/Auth/OAuth2/Slack.php index da09ad318a..f1c5b6af9c 100644 --- a/src/Appwrite/Auth/OAuth2/Slack.php +++ b/src/Appwrite/Auth/OAuth2/Slack.php @@ -139,7 +139,7 @@ class Slack extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $email = $this->getUserEmail($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Spotify.php b/src/Appwrite/Auth/OAuth2/Spotify.php index d9f3589d0b..9c541cf8ee 100644 --- a/src/Appwrite/Auth/OAuth2/Spotify.php +++ b/src/Appwrite/Auth/OAuth2/Spotify.php @@ -152,7 +152,7 @@ class Spotify extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Stripe.php b/src/Appwrite/Auth/OAuth2/Stripe.php index dc46974317..b34937a53e 100644 --- a/src/Appwrite/Auth/OAuth2/Stripe.php +++ b/src/Appwrite/Auth/OAuth2/Stripe.php @@ -150,7 +150,7 @@ class Stripe extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $email = $this->getUserEmail($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Tradeshift.php b/src/Appwrite/Auth/OAuth2/Tradeshift.php index 96339137c1..142216ce26 100644 --- a/src/Appwrite/Auth/OAuth2/Tradeshift.php +++ b/src/Appwrite/Auth/OAuth2/Tradeshift.php @@ -150,7 +150,7 @@ class Tradeshift extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $email = $this->getUser($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Twitch.php b/src/Appwrite/Auth/OAuth2/Twitch.php index 73cd57ec75..acb8587ced 100644 --- a/src/Appwrite/Auth/OAuth2/Twitch.php +++ b/src/Appwrite/Auth/OAuth2/Twitch.php @@ -151,7 +151,7 @@ class Twitch extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { $email = $this->getUserEmail($accessToken); diff --git a/src/Appwrite/Auth/OAuth2/Vk.php b/src/Appwrite/Auth/OAuth2/Vk.php index cbcc98a0e5..fefd2f7862 100644 --- a/src/Appwrite/Auth/OAuth2/Vk.php +++ b/src/Appwrite/Auth/OAuth2/Vk.php @@ -157,7 +157,7 @@ class Vk extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/WordPress.php b/src/Appwrite/Auth/OAuth2/WordPress.php index 76fb010fbd..4f9019f69d 100644 --- a/src/Appwrite/Auth/OAuth2/WordPress.php +++ b/src/Appwrite/Auth/OAuth2/WordPress.php @@ -138,7 +138,7 @@ class WordPress extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Yahoo.php b/src/Appwrite/Auth/OAuth2/Yahoo.php index f2c1b2e45c..fb6b73f583 100644 --- a/src/Appwrite/Auth/OAuth2/Yahoo.php +++ b/src/Appwrite/Auth/OAuth2/Yahoo.php @@ -168,7 +168,7 @@ class Yahoo extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Yammer.php b/src/Appwrite/Auth/OAuth2/Yammer.php index 00c1c512cf..c5c4c34b55 100644 --- a/src/Appwrite/Auth/OAuth2/Yammer.php +++ b/src/Appwrite/Auth/OAuth2/Yammer.php @@ -137,7 +137,7 @@ class Yammer extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Yandex.php b/src/Appwrite/Auth/OAuth2/Yandex.php index f25d366f8e..385127ca74 100644 --- a/src/Appwrite/Auth/OAuth2/Yandex.php +++ b/src/Appwrite/Auth/OAuth2/Yandex.php @@ -151,7 +151,7 @@ class Yandex extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; } diff --git a/src/Appwrite/Auth/OAuth2/Zoom.php b/src/Appwrite/Auth/OAuth2/Zoom.php index df63749fb0..8d3987d7c6 100644 --- a/src/Appwrite/Auth/OAuth2/Zoom.php +++ b/src/Appwrite/Auth/OAuth2/Zoom.php @@ -133,7 +133,7 @@ class Zoom extends OAuth2 * * @return bool */ - public function isEmailVerififed(string $accessToken): bool + public function isEmailVerified(string $accessToken): bool { return false; }