Skip to content

Commit e1d3458

Browse files
committed
separate special datatypes in integer
1 parent 89d0e33 commit e1d3458

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

index.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<?php
22

3-
use Nejcc\PhpDatatypes\Integers\Signed\Int128;
43
use Nejcc\PhpDatatypes\Integers\Signed\Int16;
54
use Nejcc\PhpDatatypes\Integers\Signed\Int32;
6-
use Nejcc\PhpDatatypes\Integers\Signed\Int64;
75
use Nejcc\PhpDatatypes\Integers\Signed\Int8;
86
use Nejcc\PhpDatatypes\Integers\Unsigned\UInt8;
97

src/Integers/Signed/Int128.php renamed to src/Integers/special/Int128.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Nejcc\PhpDatatypes\Integers\Signed;
5+
namespace Nejcc\PhpDatatypes\Integers\special;
66

77
use Nejcc\PhpDatatypes\Abstract\AbstractBigInteger;
88

src/Integers/Signed/Int64.php renamed to src/Integers/special/Int64.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Nejcc\PhpDatatypes\Integers\Signed;
5+
namespace Nejcc\PhpDatatypes\Integers\special;
66

77
use Nejcc\PhpDatatypes\Abstract\AbstractBigInteger;
88

File renamed without changes.
File renamed without changes.

src/helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
use Nejcc\PhpDatatypes\Integers\Signed\Int128;
43
use Nejcc\PhpDatatypes\Integers\Signed\Int16;
54
use Nejcc\PhpDatatypes\Integers\Signed\Int32;
6-
use Nejcc\PhpDatatypes\Integers\Signed\Int64;
75
use Nejcc\PhpDatatypes\Integers\Signed\Int8;
6+
use Nejcc\PhpDatatypes\Integers\special\Int128;
7+
use Nejcc\PhpDatatypes\Integers\special\Int64;
88
use Nejcc\PhpDatatypes\Integers\Unsigned\UInt8;
99

1010
function int8(int $value): Int8

0 commit comments

Comments
 (0)