interface-endpoint-storable.php 365 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\Endpoints
  6. */
  7. /**
  8. * Dictates the required methods for a storable implementation.
  9. */
  10. interface WPSEO_Endpoint_Storable {
  11. /**
  12. * Determines whether or not data can be stored for the registered endpoints.
  13. *
  14. * @return bool Whether or not data can be stored.
  15. */
  16. public function can_store_data();
  17. }