mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 04:03:55 +01:00
15 lines
128 B
PHP
15 lines
128 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Nette\Forms;
|
||
|
|
||
|
if (class_exists('Nette\Forms\Form')) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
class Form
|
||
|
{
|
||
|
|
||
|
}
|