We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe9c50 commit d85ab53Copy full SHA for d85ab53
src/Application/UI/Component.php
@@ -78,7 +78,7 @@ protected function createComponent(string $name): ?Nette\ComponentModel\ICompone
78
$res = parent::createComponent($name);
79
if (!$res instanceof SignalReceiver && !$res instanceof StatePersistent) {
80
$type = get_class($res);
81
- trigger_error("It seems that component '$name' of type $type is not intended to for in the Presenter.", E_USER_NOTICE);
+ trigger_error("It seems that component '$name' of type $type is not intended to be used in the Presenter.", E_USER_NOTICE);
82
}
83
return $res;
84
0 commit comments