Test Setup Failed
Push — master ( 527645...101619 )
by Alexey
18:46 queued 16:29
created
src/Skobkin/Bundle/PointToolsBundle/Service/Markdown/PointParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
         $ext = $matches[2];
174 174
 
175 175
         return $this->hashPart('<a href="'.$url.'" class="post-image '
176
-            .('gif' === $ext ? ' img-gif':'').'"><img src="'.$url.'" class="img-thumbnail" alt="Inline image"></a>');
176
+            .('gif' === $ext ? ' img-gif' : '').'"><img src="'.$url.'" class="img-thumbnail" alt="Inline image"></a>');
177 177
     }
178 178
 
179 179
     protected function doAnchorsPointUsernameCallback($matches)
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Command/ImportUsersCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,13 +96,13 @@
 block discarded – undo
96 96
             }
97 97
 
98 98
             if (OutputInterface::VERBOSITY_VERBOSE === $output->getVerbosity()) {
99
-                $output->writeln('@' . $row[1] . ' added');
99
+                $output->writeln('@'.$row[1].' added');
100 100
             }
101 101
 
102 102
             $count++;
103 103
         }
104 104
 
105
-        $output->writeln($count . ' users imported.');
105
+        $output->writeln($count.' users imported.');
106 106
 
107 107
         return 0;
108 108
     }
Please login to merge, or discard this patch.
Skobkin/Bundle/PointToolsBundle/Repository/SubscriptionEventRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     {
102 102
         $qb = $this->createQueryBuilder('se');
103 103
 
104
-        $rows =  $qb
104
+        $rows = $qb
105 105
             ->select([
106 106
                 'NEW Skobkin\Bundle\PointToolsBundle\DTO\DailyEvents(DAY(se.date), COUNT(se))',
107 107
                 'DAY(se.date) as day',
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Service/Telegram/MessageSender.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     ): bool
100 100
     {
101 101
         $sendMessage = new SendMessage();
102
-        $sendMessage->chat_id = (string)$chatId;
102
+        $sendMessage->chat_id = (string) $chatId;
103 103
         $sendMessage->text = $text;
104 104
         $sendMessage->parse_mode = $parseMode;
105 105
         $sendMessage->disable_web_page_preview = $disableWebPreview;
Please login to merge, or discard this patch.
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.