-
-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Description
Version: 3.1.2
Bug Description
👉 Presenter with component that can return null under specific conditions.
// exprecting null being stored in $var
$var = $presenter->getComponent('ControlOrNull', false);
// exception is being thrown in Nette\ComponentModel\Container::createComponent methodDespite setting $throw to false, exception is thrown.
Steps To Reproduce
class MyPresenter extends Presenter {
public function createComponentControlOrNull(): ?Form
{
return null;
}
}
$val = $presenter->getComponent('ControlOrNull', false); // no exception should be thrown
$vall === true; // should equal trueExpected Behavior
I am able to return null value from createComponent* methods.
Possible Solution
$throw property should be propagated to Nette\ComponentModel\Container::createComponent method.
Metadata
Metadata
Assignees
Labels
No labels