class-hustle-provider-abstract.php
5 months ago
class-hustle-provider-admin-ajax.php
1 month ago
class-hustle-provider-autoload.php
5 months ago
class-hustle-provider-container.php
3 years ago
class-hustle-provider-form-hooks-abstract.php
5 months ago
class-hustle-provider-form-settings-abstract.php
1 month ago
class-hustle-provider-interface.php
5 months ago
class-hustle-provider-utils.php
1 month ago
class-hustle-provider-interface.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Hustle_Provider_Interface class. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 3.5.0 |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Hustle_Provider_Interface. |
| 11 | * |
| 12 | * @since 3.0.5 |
| 13 | */ |
| 14 | interface Hustle_Provider_Interface { |
| 15 | |
| 16 | /** |
| 17 | * Use it to instantiate provider class. |
| 18 | * |
| 19 | * @return self |
| 20 | */ |
| 21 | public static function get_instance(); |
| 22 | } |
| 23 |