apply more cs rules for php-cs

This commit is contained in:
2023-10-17 13:27:03 +02:00
parent 0b0cbed9db
commit bc2041cbdd
1485 changed files with 8169 additions and 9620 deletions

View File

@@ -16,6 +16,7 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
/**
* @internal
*
* @coversNothing
*/
final class PersonAddressControllerTest extends WebTestCase
@@ -91,8 +92,8 @@ final class PersonAddressControllerTest extends WebTestCase
*/
public function testCreateAddress()
{
$crawler = $this->client->request('GET', '/fr/person/' .
self::$person->getId() . '/address/new');
$crawler = $this->client->request('GET', '/fr/person/'.
self::$person->getId().'/address/new');
$this->assertTrue($this->client->getResponse()->isSuccessful());
@@ -134,8 +135,8 @@ final class PersonAddressControllerTest extends WebTestCase
public function testEmptyList()
{
$crawler = $this->client->request('GET', '/fr/person/' .
self::$person->getId() . '/address/list');
$crawler = $this->client->request('GET', '/fr/person/'.
self::$person->getId().'/address/list');
$this->assertTrue($this->client->getResponse()->isSuccessful());
@@ -155,8 +156,8 @@ final class PersonAddressControllerTest extends WebTestCase
$this->refreshPerson();
$address = self::$person->getLastAddress();
$crawler = $this->client->request('GET', '/fr/person/' . self::$person->getId()
. '/address/' . $address->getId() . '/edit');
$crawler = $this->client->request('GET', '/fr/person/'.self::$person->getId()
.'/address/'.$address->getId().'/edit');
$this->assertTrue($this->client->getResponse()->isSuccessful());