add wp-rocket

This commit is contained in:
nguyen dung
2022-02-18 19:09:35 +07:00
parent 39b8cb3612
commit 3110d00ee7
927 changed files with 271703 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace WP_Rocket\ThirdParty;
use WP_Rocket\Event_Management\Subscriber_Interface;
/**
* Interface for Subscriber Factories
*
* @since 3.6.3
*/
interface SubscriberFactoryInterface {
/**
* Get a Subscriber Interface object.
*
* @since 3.6.3
*
* @return Subscriber_Interface
*/
public function get_subscriber();
}