first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-12-28 16:20:07 -05:00
commit b114fdf4fa
5377 changed files with 1850677 additions and 0 deletions
@@ -0,0 +1,19 @@
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* Interface that represents a collection.
*/
interface WPSEO_Collection {
/**
* Returns the collection data.
*
* @return array The collection data.
*/
public function get();
}