Skip to content

Commit a103891

Browse files
authored
Bump php-cs-fixer (#1001)
1 parent 32eeb61 commit a103891

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
/vendor/
2-
.php_cs.cache
3-
.phpunit.result.cache
2+
*.cache
43
composer.lock

src/Input/PutLifecycleEventHookExecutionStatusInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function request(): Request
9191

9292
// Prepare Body
9393
$bodyPayload = $this->requestBody();
94-
$body = empty($bodyPayload) ? '{}' : \json_encode($bodyPayload, 4194304);
94+
$body = empty($bodyPayload) ? '{}' : json_encode($bodyPayload, 4194304);
9595

9696
// Return the Request
9797
return new Request('POST', $uriString, $query, $headers, StreamFactory::create($body));

0 commit comments

Comments
 (0)