Test Setup Failed
Push — master ( 584547...730ac2 )
by Alexey
14:04
created
src/Skobkin/Bundle/PointToolsBundle/Controller/UserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $user = $userRepository->findUserByLogin($login);
37 37
 
38 38
         if (!$user) {
39
-            throw $this->createNotFoundException('User ' . $login . ' not found.');
39
+            throw $this->createNotFoundException('User '.$login.' not found.');
40 40
         }
41 41
 
42 42
         $subscriberEventsPagination = $paginator->paginate(
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Entity/Telegram/Account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
         return $this->firstName;
143 143
     }
144 144
 
145
-    public function updateFromMessageData(string $firstName, ?string $lastName, ?string $username, int $chatId): void
145
+    public function updateFromMessageData(string $firstName, ?string $lastName, ?string $username, int $chatId) : void
146 146
     {
147 147
         $this->firstName = $firstName;
148 148
         $this->lastName = $lastName;
Please login to merge, or discard this patch.