mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
15 lines
150 B
PHP
15 lines
150 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Kdyby\Events;
|
|
|
|
if (interface_exists('Kdyby\Events\Subscriber')) {
|
|
return;
|
|
}
|
|
|
|
interface Subscriber
|
|
{
|
|
|
|
}
|