@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Cpu; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Memory; |
| 5 | 5 | |
@@ -37,35 +37,35 @@ discard block |
||
| 37 | 37 | case $value < self::KILOBYTES: |
| 38 | 38 | $this->string = sprintf( |
| 39 | 39 | '%sKB', |
| 40 | - round($value/self::BYTES, 3) |
|
| 40 | + round($value / self::BYTES, 3) |
|
| 41 | 41 | ); |
| 42 | 42 | break; |
| 43 | 43 | |
| 44 | 44 | case $value < self::MEGABYTES: |
| 45 | 45 | $this->string = sprintf( |
| 46 | 46 | '%sMB', |
| 47 | - round($value/self::KILOBYTES, 3) |
|
| 47 | + round($value / self::KILOBYTES, 3) |
|
| 48 | 48 | ); |
| 49 | 49 | break; |
| 50 | 50 | |
| 51 | 51 | case $value < self::GIGABYTES: |
| 52 | 52 | $this->string = sprintf( |
| 53 | 53 | '%sGB', |
| 54 | - round($value/self::MEGABYTES, 3) |
|
| 54 | + round($value / self::MEGABYTES, 3) |
|
| 55 | 55 | ); |
| 56 | 56 | break; |
| 57 | 57 | |
| 58 | 58 | case $value < self::TERABYTES: |
| 59 | 59 | $this->string = sprintf( |
| 60 | 60 | '%sTB', |
| 61 | - round($value/self::GIGABYTES, 3) |
|
| 61 | + round($value / self::GIGABYTES, 3) |
|
| 62 | 62 | ); |
| 63 | 63 | break; |
| 64 | 64 | |
| 65 | 65 | case $value < self::PETABYTES: |
| 66 | 66 | $this->string = sprintf( |
| 67 | 67 | '%sPB', |
| 68 | - round($value/self::TERABYTES, 3) |
|
| 68 | + round($value / self::TERABYTES, 3) |
|
| 69 | 69 | ); |
| 70 | 70 | break; |
| 71 | 71 | } |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Disk; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Disk\Volume; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Disk\Volume; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server\Disk; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Innmind\Server\Status\Server; |
| 5 | 5 | |