Skip to content

Commit cd9e1fc

Browse files
committed
Apply ./vendor/bin/php-cs-fixer fix
1 parent 37363f4 commit cd9e1fc

6 files changed

Lines changed: 3 additions & 9 deletions

File tree

src/Core/JavaClassDeferredLoader.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
class JavaClassDeferredLoader implements JavaClassInterface
55
{
6-
76
private $deferLoadingReaderClass;
87
private $arguments = [];
98
private $options = [];

src/Imitation/java/lang/Error.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33

44
class Error extends Throwable
55
{
6-
76
}

src/Utilities/BinaryTool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ final public static function xorBits($value1, $value2, $bytes)
167167

168168
$build = '';
169169
for ($i = 0; $i < $bytes * 8; $i++) {
170-
$build .= (($value1[$i] === '1' && $value2[$i] === '0') || ($value1[$i] === '0' && $value2[$i] === '1')) ? '1' : 0;
170+
$build .= (($value1[$i] === '1' && $value2[$i] === '0') || ($value1[$i] === '0' && $value2[$i] === '1')) ? '1' : 0;
171171
}
172172

173173
return base_convert($build, 2, 10);

tests/IntegerCalculateTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public function testIntAdd()
3535

3636
public function testIntSub()
3737
{
38-
3938
$this->assertEquals(
4039
"5",
4140
$this->call(
@@ -61,7 +60,6 @@ public function testIntNegativeSub()
6160

6261
public function testIntMul()
6362
{
64-
6563
$this->assertEquals(
6664
"50",
6765
$this->call(
@@ -87,7 +85,6 @@ public function testIntAddFromOtherMethod()
8785

8886
public function testIntSubFromOtherMethod()
8987
{
90-
9188
$this->assertEquals(
9289
"5",
9390
$this->call(
@@ -113,7 +110,6 @@ public function testIntNegativeSubFromOtherMethod()
113110

114111
public function testIntMulFromOtherMethod()
115112
{
116-
117113
$this->assertEquals(
118114
"50",
119115
$this->call(

tests/OuterClassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ public function testCallMain()
2828
$result
2929
);
3030
}
31-
}
31+
}

tests/SwitchTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ public function testCallLookupswitch_Pattern3()
123123
$result
124124
);
125125
}
126-
}
126+
}

0 commit comments

Comments
 (0)