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