mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 08:47:52 +00:00
Changed codestyle to match the rest
This commit is contained in:
@@ -313,7 +313,7 @@ class InputHandler
|
|||||||
$output = (\count($filter) > 0) ? array_intersect_key($output, array_flip($filter)) : $output;
|
$output = (\count($filter) > 0) ? array_intersect_key($output, array_flip($filter)) : $output;
|
||||||
|
|
||||||
foreach ($filter as $filterKey) {
|
foreach ($filter as $filterKey) {
|
||||||
if (!array_key_exists($filterKey, $output)) {
|
if (array_key_exists($filterKey, $output) === false) {
|
||||||
$output[$filterKey] = null;
|
$output[$filterKey] = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -354,4 +354,4 @@ class InputHandler
|
|||||||
$this->file[$key] = $item;
|
$this->file[$key] = $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user