Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
chaz6chez committed Oct 12, 2024
2 parents 1ae480a + df13172 commit fb23f31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Handlers/RevoltHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static function isAvailable(): bool
return
version_compare(static::_getWorkerVersion(), '5.0.0', '>=') and
package_installed('revolt/event-loop') and
PHP_VERSION_ID >= 81000;
PHP_VERSION_ID >= 80100;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Handlers/RippleHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static function isAvailable(): bool
return
version_compare(static::_getWorkerVersion(), '5.0.0', '<') and
package_installed('cclilshy/p-ripple-drive') and
PHP_VERSION_ID >= 81000;
PHP_VERSION_ID >= 80100;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Handlers/RippleWorkerman5Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static function isAvailable(): bool
return
version_compare(static::_getWorkerVersion(), '5.0.0', '>=') and
package_installed('cclilshy/p-ripple-drive') and
PHP_VERSION_ID >= 81000;
PHP_VERSION_ID >= 80100;
}

/**
Expand Down

0 comments on commit fb23f31

Please sign in to comment.