7 lines
179 B
PHP
7 lines
179 B
PHP
<?php
|
|
namespace MailPoetVendor\Symfony\Contracts\Service;
|
|
if (!defined('ABSPATH')) exit;
|
|
interface ServiceSubscriberInterface
|
|
{
|
|
public static function getSubscribedServices();
|
|
}
|