Skip to content

Commit 71a8cd1

Browse files
authored
Dep update (#7)
1 parent 7e8f37d commit 71a8cd1

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/tests export-ignore
33
.gitattributes export-ignore
44
.gitignore export-ignore
5-
.php_cs export-ignore
5+
.php-cs-fixer.php export-ignore
66
Makefile export-ignore
77
composer-require-checker.json export-ignore
88
phpunit.xml export-ignore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
vendor/
22
.idea/
3-
.php_cs.cache
3+
.php-cs-fixer.cache
44
.phpunit.result.cache
55
composer.lock
File renamed without changes.

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
"php": "^7.4 || ^8.0"
1515
},
1616
"require-dev": {
17-
"phpunit/phpunit": "^9.4.2",
18-
"slam/php-cs-fixer-extensions": "^2.0.0"
17+
"malukenho/mcbumpface": "^1.1.5",
18+
"phpunit/phpunit": "^9.5.4",
19+
"slam/php-cs-fixer-extensions": "^v3.0.1"
1920
},
2021
"autoload": {
2122
"files": [

lib/r.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ private static function formatDb(bool $fullstack, ?string $stripFromFullstack =
8989
} elseif (\is_bool($originalArgument)) {
9090
$argument .= ':' . ($originalArgument ? 'true' : 'false');
9191
} elseif (\is_string($originalArgument)) {
92-
$argument .= ':' . (isset($originalArgument[21])
92+
$argument .= ':' . (
93+
isset($originalArgument[21])
9394
? \strlen($originalArgument) . ':' . \substr($originalArgument, 0, 21) . '[...]'
9495
: $originalArgument
9596
);

0 commit comments

Comments
 (0)