PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 18.4
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v18.4
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / vendor / wordproof / wordpress-sdk / app / Config / DefaultAppConfig.php

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

47 lines 656 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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