Skip to content

Commit f403e38

Browse files
build: Update the RequirementChecker (#1557)
Update the RequirementChecker Co-authored-by: theofidry <5175937+theofidry@users.noreply.github.com>
1 parent 566116c commit f403e38

30 files changed

+102
-102
lines changed

res/requirement-checker/bin/check-requirements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace HumbugBox467\KevinGH\RequirementChecker;
3+
namespace HumbugBox468\KevinGH\RequirementChecker;
44

55
if (isset($_SERVER['BOX_REQUIREMENT_CHECKER'])) {
66
$enableRequirementChecker = $_SERVER['BOX_REQUIREMENT_CHECKER'];

res/requirement-checker/src/Checker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use InvalidArgumentException;
77
use function count;

res/requirement-checker/src/IO.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use function fstat;
77
use function function_exists;

res/requirement-checker/src/IsExtensionConflictFulfilled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use function extension_loaded;
77
final class IsExtensionConflictFulfilled implements IsFulfilled

res/requirement-checker/src/IsExtensionFulfilled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use function extension_loaded;
77
final class IsExtensionFulfilled implements IsFulfilled

res/requirement-checker/src/IsFulfilled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
interface IsFulfilled
77
{

res/requirement-checker/src/IsPhpVersionFulfilled.php

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

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

6-
use HumbugBox467\Composer\Semver\Semver;
6+
use HumbugBox468\Composer\Semver\Semver;
77
use function sprintf;
88
use const PHP_MAJOR_VERSION;
99
use const PHP_MINOR_VERSION;

res/requirement-checker/src/Printer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use function array_shift;
77
use function count;

res/requirement-checker/src/Requirement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
final class Requirement
77
{

res/requirement-checker/src/RequirementCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace HumbugBox467\KevinGH\RequirementChecker;
4+
namespace HumbugBox468\KevinGH\RequirementChecker;
55

66
use ArrayIterator;
77
use Countable;

0 commit comments

Comments
 (0)