Passed
Push — feature/support-php-8.0 ( faa861...3ae917 )
by Darío
02:27
created
src/Expectations/ParamNotExistsExpectation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public static function from(Expectation $expectation): callable
13 13
     {
14
-        return function ($request) use ($expectation) {
14
+        return function($request) use ($expectation) {
15 15
             /** @var RequestInterface $request */
16 16
             parse_str($request->getUri()->getQuery(), $params);
17 17
 
Please login to merge, or discard this patch.
src/Expectations/ParamExistsExpectation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public static function from(Expectation $expectation): callable
13 13
     {
14
-        return function ($request) use ($expectation) {
14
+        return function($request) use ($expectation) {
15 15
             /** @var RequestInterface $request */
16 16
             parse_str($request->getUri()->getQuery(), $params);
17 17
 
Please login to merge, or discard this patch.
src/Expectations/PathMatchExpectation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public static function from(Expectation $expectation): callable
12 12
     {
13
-        return function ($request) use ($expectation) {
13
+        return function($request) use ($expectation) {
14 14
             if ($regex = $expectation->getPathRegex()) {
15 15
                 /** @var RequestInterface $request */
16 16
                 if (!preg_match($regex, $request->getUri()->getPath(), $matches)) {
Please login to merge, or discard this patch.