Skip to content

Commit ec842e9

Browse files
committed
Fix syntax [skip ci]
1 parent 85f4fa8 commit ec842e9

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/Kernel/Mnemonics/_fdiv.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22
namespace PHPJava\Kernel\Mnemonics;
33

4-
use PHPJava\Kernel\Types\_Double;
54
use PHPJava\Utilities\BinaryTool;
65
use PHPJava\Utilities\Extractor;
76

src/Kernel/Mnemonics/_idiv.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22
namespace PHPJava\Kernel\Mnemonics;
33

4-
use PHPJava\Kernel\Types\_Double;
54
use PHPJava\Kernel\Types\_Int;
65
use PHPJava\Utilities\BinaryTool;
76
use PHPJava\Utilities\Extractor;

src/Kernel/Types/Type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function __construct($value)
2929

3030
/**
3131
* @param $value
32-
* @return Type
3332
* @throws TypeException
33+
* @return Type
3434
*/
3535
public static function get($value)
3636
{

tests/CastTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testIntToChar()
9393

9494
// check type
9595
$this->assertInstanceOf(_Char::class, $result);
96-
$this->assertEquals("{", (string) $result);
96+
$this->assertEquals('{', (string) $result);
9797
}
9898

9999
public function testLongToDouble()

0 commit comments

Comments
 (0)