Passed
Branchmaster (706933)
by Alexey
02:55
created
src/Skobkin/Bundle/PointToolsBundle/Command/UpdateSubscriptionsCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * @param Input $input
39 39
      * @param Output $output
40
-     * @return bool
40
+     * @return false|null
41 41
      */
42 42
     protected function execute(InputInterface $input, OutputInterface $output)
43 43
     {
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Entity/Blogs/Comment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -370,7 +370,7 @@
 block discarded – undo
370 370
     /**
371 371
      * Get children
372 372
      *
373
-     * @return ArrayCollection
373
+     * @return Comment[]
374 374
      */
375 375
     public function getChildren()
376 376
     {
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/FileFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @param $url
63
+     * @param string $url
64 64
      *
65 65
      * @return File
66 66
      * @throws InvalidResponseException
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/PostFactory.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,6 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Creates posts and return status of new insertions
73 73
      *
74
-     * @param PostsPage $data
75 74
      *
76 75
      * @return bool
77 76
      * @throws ApiException
@@ -182,7 +181,6 @@  discard block
 block discarded – undo
182 181
 
183 182
     /**
184 183
      * @param Post $post
185
-     * @param Tag[] $tags
186 184
      */
187 185
     private function updatePostTags(Post $post, array $tagsStrings)
188 186
     {
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Service/Factory/Blogs/TagFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @param $text
63
+     * @param string $text
64 64
      *
65 65
      * @return Tag
66 66
      * @throws InvalidResponseException
Please login to merge, or discard this patch.
src/Skobkin/Bundle/PointToolsBundle/Service/Factory/UserFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-     * @param array $data
115
+     * @param UserDTO $data
116 116
      *
117 117
      * @throws InvalidResponseException
118 118
      */
Please login to merge, or discard this patch.
web/config.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,7 +82,10 @@  discard block
 block discarded – undo
82 82
                         <?php if (count($minorProblems)): ?>
83 83
                             <h2>Recommendations</h2>
84 84
                             <p>
85
-                                <?php if (count($majorProblems)): ?>Additionally, to<?php else: ?>To<?php endif; ?> enhance your Symfony experience,
85
+                                <?php if (count($majorProblems)): ?>Additionally, to<?php else {
86
+    : ?>To<?php endif;
87
+}
88
+?> enhance your Symfony experience,
86 89
                                 it’s recommended that you fix the following:
87 90
                             </p>
88 91
                             <ol>
@@ -96,9 +99,12 @@  discard block
 block discarded – undo
96 99
                             <p id="phpini">*
97 100
                                 <?php if ($symfonyRequirements->getPhpIniConfigPath()): ?>
98 101
                                     Changes to the <strong>php.ini</strong> file must be done in "<strong><?php echo $symfonyRequirements->getPhpIniConfigPath() ?></strong>".
99
-                                <?php else: ?>
102
+                                <?php else {
103
+    : ?>
100 104
                                     To change settings, create a "<strong>php.ini</strong>".
101
-                                <?php endif; ?>
105
+                                <?php endif;
106
+}
107
+?>
102 108
                             </p>
103 109
                         <?php endif; ?>
104 110
 
Please login to merge, or discard this patch.