Completed
Push — wip-lisem ( 725539...4fa692 )
by
unknown
02:34
created
src/Generator/ArrayToYamlGenerator.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param string $file
26
+     * @param string $skeletonDirectories
26 27
      */
27 28
     public function __construct($file, $skeletonDirectories)
28 29
     {
@@ -32,6 +33,7 @@  discard block
 block discarded – undo
32 33
 
33 34
     /**
34 35
      * @param string $array
36
+     * @param string $skeleton
35 37
      *
36 38
      * @throws \RuntimeException
37 39
      */
Please login to merge, or discard this patch.
src/Generator/ControllerGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     private $file;
32 32
 
33 33
     /**
34
-     * @param array|string $skeletonDirectory
34
+     * @param string $skeletonDirectory
35 35
      */
36 36
     public function __construct($skeletonDirectory)
37 37
     {
Please login to merge, or discard this patch.
src/Command/PatcherApplyCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -102,6 +102,9 @@
 block discarded – undo
102 102
         }
103 103
     }
104 104
 
105
+    /**
106
+     * @param string $targetFile
107
+     */
105 108
     private function getCommand($targetFile, $patchFile)
106 109
     {
107 110
         return sprintf(
Please login to merge, or discard this patch.
src/Controller/CRUDController.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -291,6 +291,9 @@
 block discarded – undo
291 291
     {
292 292
     }
293 293
 
294
+    /**
295
+     * @param \Symfony\Component\Form\FormView $formView
296
+     */
294 297
     protected function defineFormTheme($formView, $formTheme)
295 298
     {
296 299
         $twig = $this->get('twig');
Please login to merge, or discard this patch.
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -296,8 +296,7 @@
 block discarded – undo
296 296
         $twig = $this->get('twig');
297 297
 
298 298
         $renderer = ($twig->hasExtension('Symfony\Bridge\Twig\Form\TwigRenderer')) ?
299
-                  $twig->getRuntime('Symfony\Bridge\Twig\Form\TwigRenderer') :
300
-                  $twig->getExtension('Symfony\Bridge\Twig\Extension\FormExtension')->renderer;
299
+                  $twig->getRuntime('Symfony\Bridge\Twig\Form\TwigRenderer') : $twig->getExtension('Symfony\Bridge\Twig\Extension\FormExtension')->renderer;
301 300
         $renderer->setTheme($formView, $formTheme);
302 301
     }
303 302
 }
Please login to merge, or discard this patch.