Passed
Push — swp-252 ( bc0f1e )
by Rafał
190:48 queued 143:56
created
src/SWP/Bundle/CoreBundle/Command/ThemeGenerateCommand.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      * @param InputInterface  $input
185 185
      * @param OutputInterface $output
186 186
      * @param Tenant $tenant
187
-     * @param $themeDir
187
+     * @param string $themeDir
188 188
      * @param $themeName
189 189
      */
190 190
     protected function writeConfigFile(InputInterface $input, OutputInterface $output, Tenant $tenant, $themeDir, $themeName)
@@ -239,7 +239,6 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * @param InputInterface  $input  An InputInterface instance
241 241
      * @param OutputInterface $output An OutputInterface instance
242
-     * @param array           $keys
243 242
      */
244 243
     protected function getValuesFromUser(InputInterface $input, OutputInterface $output, array $keysAndDefaults)
245 244
     {
@@ -284,7 +283,7 @@  discard block
 block discarded – undo
284 283
 
285 284
     /**
286 285
      * @param Filesystem $filesystem
287
-     * @param $baseDir
286
+     * @param string $baseDir
288 287
      * @param $fileName
289 288
      *
290 289
      * @return string
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Model/ThemeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $name
23
+     * @return void
23 24
      */
24 25
     public function setName($name);
25 26
 
Please login to merge, or discard this patch.
src/SWP/Bundle/MultiTenancyBundle/Command/CreateTenantCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
      * @param $subdomain
145 145
      * @param $name
146 146
      * @param $disabled
147
-     * @param $organization
147
+     * @param OrganizationInterface $organization
148 148
      *
149 149
      * @return TenantInterface
150 150
      */
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Loader/ArticleLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -171,6 +171,9 @@
 block discarded – undo
171 171
         return;
172 172
     }
173 173
 
174
+    /**
175
+     * @param string $identifier
176
+     */
174 177
     private function getQueryString($identifier, $parameters)
175 178
     {
176 179
         $queryStr = sprintf("SELECT * FROM [nt:unstructured] as S WHERE S.phpcr:class='SWP\Bundle\ContentBundle\Doctrine\ODM\PHPCR\Article' AND S.route=%s AND S.status=published", $identifier);
Please login to merge, or discard this patch.