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

@@ -30,22 +30,16 @@ final class PersonControllerUpdateWithHiddenFieldsTest extends WebTestCase
/**
* @var string The url using for editing the person's information
*/
private $editUrl;
private string $editUrl;
/**
* @var \Doctrine\ORM\EntityManagerInterface The entity manager
*/
private $em;
private ?object $em = null;
/**
* @var Person The person on which the test is executed
*/
private $person;
private ?\Chill\PersonBundle\Entity\Person $person = null;
/**
* @var string The url using for seeing the person's information
*/
private $viewUrl;
private string $viewUrl;
/**
* Prepare client and create a random person.