Completed
Push — master ( ec876e...536ae0 )
by David
02:53
created
Controllers/Backend/WbmTagManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     public function listAction()
38 38
     {
39
-        $id = (int) $this->Request()->getParam('id', null);
39
+        $id = (int)$this->Request()->getParam('id', null);
40 40
         $module = $this->Request()->getParam('moduleName', null);
41 41
 
42 42
         $data = $this->container->get('models')->getRepository(Property::class)->getChildrenList($id, $module);
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     public function updateAction()
74 74
     {
75 75
         $params = $this->Request()->getPost();
76
-        $id = (int) $this->Request()->get('id');
76
+        $id = (int)$this->Request()->get('id');
77 77
 
78 78
         /** @var Property $property */
79 79
         $property = $this->container->get('models')->getRepository(Property::class)->find($id);
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function deleteAction()
94 94
     {
95
-        $id = (int) $this->Request()->get('id');
95
+        $id = (int)$this->Request()->get('id');
96 96
 
97 97
         /** @var Property $property */
98 98
         $property = $this->container->get('models')->getRepository(Property::class)->find($id);
Please login to merge, or discard this patch.