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 (false === $parent || Waiter::class !== $parent) {
109
+
thrownew \LogicException(sprintf('The "%s::%s" can only be used for classes that extend "%s"', __CLASS__, __METHOD__, Waiter::class));
110
+
}
111
+
}
112
+
113
+
if (Waiter::STATE_SUCCESS !== $finalState && Waiter::STATE_FAILURE !== $finalState) {
114
+
thrownew \LogicException(sprintf('The state passed to "%s::%s" must be "%s" or "%s".', __CLASS__, __METHOD__, Waiter::STATE_SUCCESS, Waiter::STATE_FAILURE));
115
+
}
116
+
117
+
$response = self::getResponseObject();
118
+
119
+
$reflectionClass = new \ReflectionClass(Waiter::class);
0 commit comments