@@ -36,7 +36,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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); |