Completed
Push — 3.x ( 5349d6...5ea965 )
by Grégoire
04:11
created
src/Controller/CRUDController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Delete action.
175 175
      *
176
-     * @param int|string|null $id
176
+     * @param integer|null $id
177 177
      *
178 178
      * @return Response|RedirectResponse
179 179
      *
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
     /**
701 701
      * View history revision of object.
702 702
      *
703
-     * @param int|string|null $id
703
+     * @param null|integer $id
704 704
      * @param string|null     $revision
705 705
      *
706 706
      * @return Response
@@ -760,9 +760,9 @@  discard block
 block discarded – undo
760 760
     /**
761 761
      * Compare history revisions of object.
762 762
      *
763
-     * @param int|string|null $id
764
-     * @param int|string|null $base_revision
765
-     * @param int|string|null $compare_revision
763
+     * @param null|integer $id
764
+     * @param null|integer $base_revision
765
+     * @param null|integer $compare_revision
766 766
      *
767 767
      * @return Response
768 768
      *
Please login to merge, or discard this patch.
src/Controller/PolyfillControllerTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
  */
26 26
 trait PolyfillControllerTrait
27 27
 {
28
+    /**
29
+     * @param string $methodName
30
+     */
28 31
     public function __call($methodName, $arguments)
29 32
     {
30 33
         $this->proxyToController($methodName, $arguments);
Please login to merge, or discard this patch.