Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Sep 25, 2024
1 parent 5b6a99e commit c371bbd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion laravel/config/concurrency.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
|
*/

'driver' => env('CONCURRENCY_DRIVER', 'process'),
'default' => env('CONCURRENCY_DRIVER', 'process'),

];
11 changes: 10 additions & 1 deletion phpstan-baseline.neon
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
parameters:
ignoreErrors: []
ignoreErrors:
-
message: "#^Unable to resolve the template type TGroupKey in call to method Illuminate\\\\Support\\\\Collection\\<int\\|string,array\\<int\\|string, array\\<string, class\\-string\\<Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|class\\-string\\<Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\>\\:\\:groupBy\\(\\)$#"
count: 2
path: src/Foundation/Application.php

-
message: "#^Unable to resolve the template type TGroupKey in call to method Illuminate\\\\Support\\\\Collection\\<int\\|string,array\\<int\\|string, array\\<string, class\\-string\\<Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|class\\-string\\<Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\|Orchestra\\\\Testbench\\\\Contracts\\\\Attributes\\\\TestingFeature\\>\\>\\:\\:groupBy\\(\\)$#"
count: 4
path: src/TestCase.php
2 changes: 1 addition & 1 deletion src/Attributes/RequiresDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function handle($app, Closure $action): void
}

if (
is_string($this->driver)
\is_string($this->driver)
&& ! \is_null($this->versionRequirement)
&& preg_match('/(?P<operator>[<>=!]{0,2})\s*(?P<version>[\d\.-]+(dev|(RC|alpha|beta)[\d\.])?)[ \t]*\r?$/m', $this->versionRequirement, $matches)
) {
Expand Down

0 comments on commit c371bbd

Please sign in to comment.