@@ -52,7 +52,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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); |
@@ -171,7 +171,7 @@ |
||
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | /** |
| 174 | - * @param $string |
|
| 174 | + * @param string $string |
|
| 175 | 175 | * |
| 176 | 176 | * @return string |
| 177 | 177 | */ |