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 (func_num_args() > 2 && !is_int(func_get_arg(2))) {
47
+
trigger_deprecation('norkunas/onesignal-php-api', '2.1.0', 'Method %s() will have a third `int $kind` argument. Not defining it or passing a non integer value is deprecated.', __METHOD__);
48
+
} elseif (__CLASS__ !== static::class) {
49
+
$r = new \ReflectionMethod($this, __FUNCTION__);
50
+
51
+
if (\count($r->getParameters()) > 2) {
52
+
trigger_deprecation('norkunas/onesignal-php-api', '2.1.0', 'Method %s() will have a third `int $kind` argument. Not defining it or passing a non integer value is deprecated.', __METHOD__);
0 commit comments