apply rector rules

This commit is contained in:
2023-07-28 02:40:02 +02:00
parent 157cdf6dfc
commit f570fe92a5
112 changed files with 252 additions and 562 deletions

View File

@@ -20,20 +20,14 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
*/
final class PersonControllerViewWithHiddenFieldsTest extends WebTestCase
{
/**
* @var \Doctrine\ORM\EntityManagerInterface The entity manager
*/
private $em;
private ?object $em = null;
/**
* @var Person A person used on which to run the test
*/
private $person;
private ?\Chill\PersonBundle\Entity\Person $person = null;
/**
* @var string The url to view the person details
*/
private $viewUrl;
private string $viewUrl;
protected function setUp(): void
{