Skip to content

Commit 5ec4fd7

Browse files
committed
add declare(strict_types=1)
1 parent c2bc808 commit 5ec4fd7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+126
-2
lines changed

bin/php-whois.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use Iodev\Whois\Factory;
46

57
$scriptDir = '.';

src/Iodev/Whois/Config.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois;
46

57
class Config

src/Iodev/Whois/DataObject.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois;
46

57
/**

src/Iodev/Whois/Exceptions/ConnectionException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Exceptions;
46

57
use Exception;

src/Iodev/Whois/Exceptions/ServerMismatchException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Exceptions;
46

57
use Throwable;

src/Iodev/Whois/Exceptions/WhoisException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Exceptions;
46

57
use Throwable;

src/Iodev/Whois/Factory.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois;
46

57
use Iodev\Whois\Loaders\ILoader;

src/Iodev/Whois/Helpers/DateHelper.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class DateHelper

src/Iodev/Whois/Helpers/DomainHelper.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
use Iodev\Whois\Factory;

src/Iodev/Whois/Helpers/GroupFilter.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class GroupFilter

src/Iodev/Whois/Helpers/GroupHelper.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class GroupHelper

src/Iodev/Whois/Helpers/GroupSelector.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class GroupSelector

src/Iodev/Whois/Helpers/GroupTrait.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
trait GroupTrait

src/Iodev/Whois/Helpers/ParserHelper.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class ParserHelper

src/Iodev/Whois/Helpers/TextHelper.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Helpers;
46

57
class TextHelper

src/Iodev/Whois/IFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois;
46

57
use Iodev\Whois\Loaders\ILoader;

src/Iodev/Whois/Loaders/CurlLoader.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Loaders;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

src/Iodev/Whois/Loaders/ILoader.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Loaders;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

src/Iodev/Whois/Loaders/MemcachedLoader.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Loaders;
46

57
use Memcached;

src/Iodev/Whois/Loaders/SocketLoader.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Loaders;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

src/Iodev/Whois/Modules/Asn/AsnInfo.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use Iodev\Whois\DataObject;

src/Iodev/Whois/Modules/Asn/AsnInfoDeprecated.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
trait AsnInfoDeprecated

src/Iodev/Whois/Modules/Asn/AsnModule.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

src/Iodev/Whois/Modules/Asn/AsnParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use Iodev\Whois\Helpers\ParserHelper;

src/Iodev/Whois/Modules/Asn/AsnParserDeprecated.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
trait AsnParserDeprecated

src/Iodev/Whois/Modules/Asn/AsnResponse.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use Iodev\Whois\DataObject;

src/Iodev/Whois/Modules/Asn/AsnResponseDeprected.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
trait AsnResponseDeprected

src/Iodev/Whois/Modules/Asn/AsnRouteInfo.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use InvalidArgumentException;

src/Iodev/Whois/Modules/Asn/AsnRouteInfoDeprecated.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
trait AsnRouteInfoDeprecated

src/Iodev/Whois/Modules/Asn/AsnServer.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Asn;
46

57
use InvalidArgumentException;

src/Iodev/Whois/Modules/Module.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules;
46

57
use Iodev\Whois\Loaders\ILoader;

src/Iodev/Whois/Modules/ModuleType.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules;
46

57
class ModuleType

src/Iodev/Whois/Modules/Tld/Parsers/AutoParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld\Parsers;
46

57
use Iodev\Whois\Modules\Tld\TldInfo;

src/Iodev/Whois/Modules/Tld/Parsers/BlockParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld\Parsers;
46

57
use Iodev\Whois\Helpers\DateHelper;

src/Iodev/Whois/Modules/Tld/Parsers/CommonParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld\Parsers;
46

57
use Iodev\Whois\Helpers\GroupFilter;

src/Iodev/Whois/Modules/Tld/Parsers/IndentParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld\Parsers;
46

57
use Iodev\Whois\Helpers\GroupFilter;

src/Iodev/Whois/Modules/Tld/TldInfo.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
use InvalidArgumentException;

src/Iodev/Whois/Modules/Tld/TldInfoDeprecated.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
trait TldInfoDeprecated

src/Iodev/Whois/Modules/Tld/TldModule.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

src/Iodev/Whois/Modules/Tld/TldParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
abstract class TldParser

src/Iodev/Whois/Modules/Tld/TldParserDeprecated.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
use Iodev\Whois\Config;

src/Iodev/Whois/Modules/Tld/TldResponse.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
use Iodev\Whois\DataObject;

src/Iodev/Whois/Modules/Tld/TldResponseDeprected.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
trait TldResponseDeprected

src/Iodev/Whois/Modules/Tld/TldServer.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Modules\Tld;
46

57
use InvalidArgumentException;

src/Iodev/Whois/Punycode/IPunycode.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Punycode;
46

57
interface IPunycode
+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois\Punycode;
46

57
class IntlPunycode implements IPunycode
@@ -9,18 +11,20 @@ public function encode(string $unicode): string
911
if (empty($unicode)) {
1012
return '';
1113
}
12-
return defined('INTL_IDNA_VARIANT_UTS46')
14+
$result = defined('INTL_IDNA_VARIANT_UTS46')
1315
? idn_to_ascii($unicode, 0, INTL_IDNA_VARIANT_UTS46)
1416
: idn_to_ascii($unicode);
17+
return $result ?: '';
1518
}
1619

1720
public function decode(string $ascii): string
1821
{
1922
if (empty($ascii)) {
2023
return '';
2124
}
22-
return defined('INTL_IDNA_VARIANT_UTS46')
25+
$result = defined('INTL_IDNA_VARIANT_UTS46')
2326
? idn_to_utf8($ascii, 0, INTL_IDNA_VARIANT_UTS46)
2427
: idn_to_utf8($ascii);
28+
return $result ?: '';
2529
}
2630
}

src/Iodev/Whois/Whois.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Iodev\Whois;
46

57
use Iodev\Whois\Exceptions\ConnectionException;

0 commit comments

Comments
 (0)