class-gsc-config.php 481 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Class WPSEO_GSC_Config.
  9. *
  10. * @deprecated 12.5
  11. *
  12. * @codeCoverageIgnore
  13. */
  14. class WPSEO_GSC_Config {
  15. /**
  16. * The Google search console configuration.
  17. *
  18. * @deprecated 12.5
  19. *
  20. * @codeCoverageIgnore
  21. *
  22. * @var array
  23. */
  24. public static $gsc = array(
  25. 'application_name' => '',
  26. 'client_id' => '',
  27. 'client_secret' => '',
  28. 'redirect_uri' => '',
  29. 'scopes' => array(),
  30. );
  31. }