Completed
Pull Request — development (#812)
by
unknown
04:52
created
htdocs_symfony/src/Entity/CachesEntity.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@  discard block
 block discarded – undo
74 74
         return $this->cache_id;
75 75
     }
76 76
 
77
+    /**
78
+     * @param integer $arg
79
+     */
77 80
     public function setCacheId($arg)
78 81
     {
79 82
         $this->cache_id = $arg;
@@ -85,6 +88,9 @@  discard block
 block discarded – undo
85 88
         return $this->name;
86 89
     }
87 90
 
91
+    /**
92
+     * @param string $arg
93
+     */
88 94
     public function setName($arg)
89 95
     {
90 96
         $this->name = $arg;
Please login to merge, or discard this patch.
htdocs_symfony/src/Controller/Backend/CachesController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@
 block discarded – undo
48 48
         } else {
49 49
             return $this->render(
50 50
                 'backend/caches/basicsearch.html.twig', [
51
-                                                          'cachesForm' => $form->createView(),
52
-                                                          'caches_by_searchfield' => $fetchedCaches
53
-                                                      ]
51
+                                                            'cachesForm' => $form->createView(),
52
+                                                            'caches_by_searchfield' => $fetchedCaches
53
+                                                        ]
54 54
             );
55 55
         }
56 56
     }
Please login to merge, or discard this patch.