We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b855b7 commit 6f26b3aCopy full SHA for 6f26b3a
Http/Kernel.php
@@ -75,12 +75,11 @@ protected function dispatchRouter(): bool
75
*/
76
public function boot(): bool
77
{
78
- if (
79
- version_compare(
80
- version1: $current = PHP_VERSION,
81
- version2: (string) $required = Application::MIN_PHP_VERSION,
82
- operator: '<'
83
- )
+ if (version_compare(
+ version1: $current = PHP_VERSION,
+ version2: (string) $required = Application::MIN_PHP_VERSION,
+ operator: '<'
+ )
84
) {
85
die(
86
sprintf(
0 commit comments