]> git.mxchange.org Git - friendica.git/commitdiff
make PHP-CS happy :-)
authorPhilipp <admin@philipp.info>
Sun, 10 Oct 2021 21:32:16 +0000 (23:32 +0200)
committerPhilipp <admin@philipp.info>
Mon, 18 Oct 2021 21:32:43 +0000 (23:32 +0200)
tests/src/Profile/ProfileField/Entity/ProfileFieldTest.php

index 40f06a0890c4e548ecc65f387f96d090fe3d8dea..ff52c7f08db9c33cfd73fac1551315a227479caa 100644 (file)
@@ -45,7 +45,7 @@ class ProfileFieldTest extends MockedTest
                                'created' => new \DateTime('2021-10-10T21:12:00.000000+0000', new \DateTimeZone('UTC')),
                                'edited'  => new \DateTime('2021-10-10T21:12:00.000000+0000', new \DateTimeZone('UTC')),
                        ],
-                       'withId'  => [
+                       'withId' => [
                                'uid'     => 23,
                                'order'   => 1,
                                'psid'    => 2,
@@ -93,8 +93,11 @@ class ProfileFieldTest extends MockedTest
                        'id'      => $id,
                ], $permissionSet);
 
-               $permissionSetNew = $this->permissionSetFactory->createFromTableRow(['uid' => 2, 'allow_cid' => '<1>',
-                                                                                                                                                        'id'  => 23]);
+               $permissionSetNew = $this->permissionSetFactory->createFromTableRow([
+                       'uid'       => 2,
+                       'allow_cid' => '<1>',
+                       'id'        => 23
+               ]);
 
                $entity->update('updatedValue', 2345, $permissionSetNew);