mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
13 lines
165 B
PHP
13 lines
165 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace Gedmo\Translatable;
|
||
|
|
||
|
if (interface_exists('Gedmo\Translatable\Translatable')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
interface Translatable
|
||
|
{
|
||
|
|
||
|
}
|