Development

- It's now possible to adjust the load-order for parameters on routes.
- Replaced PHP 7.1 deprecated `mcrypt_create_iv` function with `random_bytes` if it is available (requires > PHP7)
- Added `setIndex`, `setName` and `setValue` methods to `IInputItem` to allow for extendability.
- Cleanup and bug fixes.
This commit is contained in:
Simon Sessingø
2016-11-25 18:26:50 +01:00
parent 1c515119b4
commit 68fc6b76c0
6 changed files with 175 additions and 149 deletions
-4
View File
@@ -188,10 +188,6 @@ class Input
*/
public function all(array $filter = null)
{
if ($this->invalidContentType === true) {
return [];
}
$output = $_POST;
if ($this->request->getMethod() === 'post') {