Skip to content

Commit

Permalink
Merge pull request #48 from forgie1/nette-app-323
Browse files Browse the repository at this point in the history
sync with nette/application 3.2.3
  • Loading branch information
hrach authored Apr 25, 2024
2 parents cca31c4 + 9153f14 commit 1d75076
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"require": {
"php": "^7.2 || ^8.0",
"nette/application": "^3.2",
"nette/application": "^3.2.3",
"nette/utils": "^3.0 || ^4.0"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions src/SecuredLinksControlTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public function signalReceived(string $signal): void
}
if (isset($this->params[$param->name])) {
$params[$param->name] = $this->params[$param->name];
$type = Nette\Application\UI\ComponentReflection::getType($param);
Nette\Application\UI\ComponentReflection::convertType($params[$param->name], $type);
$type = Nette\Application\UI\ParameterConverter::getType($param);
Nette\Application\UI\ParameterConverter::convertType($params[$param->name], $type);
}
}
}
Expand Down

0 comments on commit 1d75076

Please sign in to comment.