DefaultAppConfig.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.4, at vendor/wordproof/wordpress-sdk/app/Config/DefaultAppConfig.php
| 1 | <?php |
| 2 | |
| 3 | namespace WordProof\SDK\Config; |
| 4 | |
| 5 | class DefaultAppConfig implements AppConfigInterface |
| 6 | { |
| 7 | /** |
| 8 | * @return string |
| 9 | */ |
| 10 | public function getPartner() |
| 11 | { |
| 12 | return 'wordproof'; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * @return string |
| 17 | */ |
| 18 | public function getEnvironment() |
| 19 | { |
| 20 | return 'production'; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * @return null |
| 25 | */ |
| 26 | public function getOauthClient() |
| 27 | { |
| 28 | return null; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * @return null |
| 33 | */ |
| 34 | public function getWordProofUrl() |
| 35 | { |
| 36 | return null; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @return null |
| 41 | */ |
| 42 | public function getScriptsFileOverwrite() |
| 43 | { |
| 44 | return null; |
| 45 | } |
| 46 | } |
| 47 |