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
($confidenceThreshold >= 0 && $confidenceThreshold <= 1) || thrownewValueError('the confidence threshold must be between 0 and 1.');
33
-
false !== @preg_match($pattern, '') || thrownewValueError('the regular expression pattern "'.$pattern.'" is not valid. Did you forget the delimiter?');
34
-
('' !== $name && 1 === preg_match('/^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$/', $name)) || thrownewValueError('The name "'.$name.'" is not a valid snake case variable name.');
('' !== $pattern && false !== @preg_match($pattern, '')) || thrownewValueError('the regular expression pattern "'.$pattern.'" is not valid. Did you forget the delimiter?');
33
+
('' !== $fieldTypeName && 1 === preg_match('/^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$/', $fieldTypeName)) || thrownewValueError('The name "'.$fieldTypeName.'" is not a valid snake case variable name.');
0 commit comments