mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 04:03:55 +01:00
13 lines
187 B
PHP
13 lines
187 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Gedmo\Timestampable\Traits;
|
|
|
|
if (trait_exists('Gedmo\Timestampable\Traits\TimestampableEntity')) {
|
|
return;
|
|
}
|
|
|
|
trait TimestampableEntity
|
|
{
|
|
|
|
}
|