Skip to content

Commit ef7912c

Browse files
committed
test: composer cs-fix
1 parent 3447878 commit ef7912c

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

tests/Fake/CI_Input.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
class CI_Input
88
{
9-
public function method(): string
10-
{
11-
return 'GET';
12-
}
9+
public function method(): string
10+
{
11+
return 'GET';
12+
}
1313
}

tests/Fake/ForReflectionHelper.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@
66

77
class ForReflectionHelper
88
{
9-
/**
10-
* @var string
11-
*/
9+
/** @var string */
1210
private $private = 'secret';
1311

14-
/**
15-
* @var string
16-
*/
12+
/** @var string */
1713
private static $staticPrivate = 'xyz';
1814

1915
public function getPrivate(): string
@@ -31,7 +27,7 @@ private function privateMethod(string $param1, string $param2): string
3127
return 'private ' . $param1 . $param2;
3228
}
3329

34-
private static function privateStaticMethod(string $param1, string$param2): string
30+
private static function privateStaticMethod(string $param1, string $param2): string
3531
{
3632
return 'private_static ' . $param1 . $param2;
3733
}

0 commit comments

Comments
 (0)