You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($res && !$resinstanceof SignalReceiver && !$resinstanceof StatePersistent) {
73
-
$type = $res::class;
74
-
trigger_error("It seems that component '$name' of type $type is not intended to be used in the Presenter.", E_USER_NOTICE);
71
+
if (!$componentinstanceof SignalReceiver && !$componentinstanceof StatePersistent) {
72
+
thrownewNette\InvalidStateException("Component '$name' of type " . gettype($component) . ' is not intended to be used in the Presenter.', E_USER_NOTICE);
0 commit comments