Completed
Push — master ( c21fc8...da8374 )
by David
01:57
created
Controllers/Backend/WbmTagManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function listAction()
54 54
     {
55
-        $id = (int) $this->Request()->getParam('id', null);
55
+        $id = (int)$this->Request()->getParam('id', null);
56 56
         $module = $this->Request()->getParam('moduleName', null);
57 57
 
58 58
         $data = $this->container->get('models')->getRepository('WbmTagManager\Models\Property')->getChildrenList($id, $module);
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     public function updateAction()
84 84
     {
85 85
         $params = $this->Request()->getPost();
86
-        $id = (int) $this->Request()->get('id');
86
+        $id = (int)$this->Request()->get('id');
87 87
 
88 88
         /** @var Property $property */
89 89
         $property = $this->container->get('models')->getRepository('WbmTagManager\Models\Property')->find($id);
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
     public function deleteAction()
101 101
     {
102
-        $id = (int) $this->Request()->get('id');
102
+        $id = (int)$this->Request()->get('id');
103 103
 
104 104
         /** @var Property $property */
105 105
         $property = $this->container->get('models')->getRepository('WbmTagManager\Models\Property')->find($id);
Please login to merge, or discard this patch.