mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
15 lines
155 B
PHP
15 lines
155 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\RectorPrefixed\Tests;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @ORM\Entity
|
|
*/
|
|
class SkipSomeEntity
|
|
{
|
|
}
|