Skip to content

Commit 199f592

Browse files
committed
remove malfunctions more fix
Responding to change requests
1 parent 7e6e365 commit 199f592

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Controllers/CompaniesController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function searchAction(): void
4949
$this->request->getPost()
5050
);
5151

52-
$this->persistent->searchParams = array('di'=>null) + $query->getParams();
52+
$this->persistent->searchParams = ['di' => null] + $query->getParams();
5353
}
5454

5555
$parameters = [];

src/Controllers/ProductsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function searchAction(): void
5555
$this->request->getPost()
5656
);
5757

58-
$this->persistent->searchParams = array('di'=>null) + $query->getParams();
58+
$this->persistent->searchParams = ['di' => null] + $query->getParams();
5959
}
6060

6161
$parameters = [];

src/Controllers/ProducttypesController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function searchAction(): void
5454
$this->request->getPost()
5555
);
5656

57-
$this->persistent->searchParams = array('di'=>null) + $query->getParams();
57+
$this->persistent->searchParams = ['di' => null] + $query->getParams();
5858
}
5959

6060
$parameters = [];

0 commit comments

Comments
 (0)