Skip to content

Commit

Permalink
remove malfunctions more fix
Browse files Browse the repository at this point in the history
Responding to change requests
  • Loading branch information
s-ohnishi committed Mar 29, 2024
1 parent 7e6e365 commit 199f592
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Controllers/CompaniesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function searchAction(): void
$this->request->getPost()
);

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

Check warning on line 52 in src/Controllers/CompaniesController.php

View check run for this annotation

Codecov / codecov/patch

src/Controllers/CompaniesController.php#L52

Added line #L52 was not covered by tests
}

$parameters = [];
Expand Down
2 changes: 1 addition & 1 deletion src/Controllers/ProductsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function searchAction(): void
$this->request->getPost()
);

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

Check warning on line 58 in src/Controllers/ProductsController.php

View check run for this annotation

Codecov / codecov/patch

src/Controllers/ProductsController.php#L58

Added line #L58 was not covered by tests
}

$parameters = [];
Expand Down
2 changes: 1 addition & 1 deletion src/Controllers/ProducttypesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function searchAction(): void
$this->request->getPost()
);

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

Check warning on line 57 in src/Controllers/ProducttypesController.php

View check run for this annotation

Codecov / codecov/patch

src/Controllers/ProducttypesController.php#L57

Added line #L57 was not covered by tests
}

$parameters = [];
Expand Down

0 comments on commit 199f592

Please sign in to comment.