From 725c2a758995276defcdbce9c87151306380786d Mon Sep 17 00:00:00 2001 From: Alfonso Bribiesca Date: Fri, 2 Aug 2024 07:44:05 -0600 Subject: [PATCH] chore: update maintainer and remove unnecessary disclaimers (#131) --- CODEOWNERS | 1 - README.md | 2 -- composer.json | 6 +++--- src/Binary/Buffer/Reader/Buffer.php | 9 --------- src/Binary/Buffer/Reader/Concerns/Hex.php | 9 --------- src/Binary/Buffer/Reader/Concerns/Integer.php | 9 --------- .../Buffer/Reader/Concerns/UnsignedInteger.php | 9 --------- src/Binary/Buffer/Writer/Buffer.php | 9 --------- src/Binary/Buffer/Writer/Concerns/Generic.php | 9 --------- src/Binary/Buffer/Writer/Concerns/Hex.php | 9 --------- src/Binary/Buffer/Writer/Concerns/Integer.php | 9 --------- .../Buffer/Writer/Concerns/UnsignedInteger.php | 9 --------- src/Binary/Hex/Reader.php | 9 --------- src/Binary/Hex/Writer.php | 9 --------- src/Binary/Integer/Reader.php | 9 --------- src/Binary/Integer/Writer.php | 9 --------- src/Binary/UnsignedInteger/Reader.php | 9 --------- src/Binary/UnsignedInteger/Writer.php | 9 --------- src/ByteBuffer/ByteBuffer.php | 9 --------- src/ByteBuffer/ByteOrder.php | 9 --------- src/ByteBuffer/Concerns/Initialisable.php | 9 --------- src/ByteBuffer/Concerns/Offsetable.php | 9 --------- src/ByteBuffer/Concerns/Positionable.php | 9 --------- src/ByteBuffer/Concerns/Readable.php | 9 --------- src/ByteBuffer/Concerns/Reads/Floats.php | 9 --------- src/ByteBuffer/Concerns/Reads/Hex.php | 9 --------- src/ByteBuffer/Concerns/Reads/Integer.php | 9 --------- src/ByteBuffer/Concerns/Reads/Strings.php | 9 --------- src/ByteBuffer/Concerns/Reads/UnsignedInteger.php | 9 --------- src/ByteBuffer/Concerns/Sizeable.php | 9 --------- src/ByteBuffer/Concerns/Transformable.php | 9 --------- src/ByteBuffer/Concerns/Writeable.php | 9 --------- src/ByteBuffer/Concerns/Writes/Floats.php | 9 --------- src/ByteBuffer/Concerns/Writes/Hex.php | 9 --------- src/ByteBuffer/Concerns/Writes/Integer.php | 9 --------- src/ByteBuffer/Concerns/Writes/Strings.php | 9 --------- src/ByteBuffer/Concerns/Writes/UnsignedInteger.php | 9 --------- src/ByteBuffer/LengthMap.php | 9 --------- src/Configuration/Fee.php | 14 -------------- src/Configuration/Network.php | 14 -------------- src/Enums/Fees.php | 14 -------------- src/Enums/TypeGroup.php | 14 -------------- src/Enums/Types.php | 9 --------- src/Helpers.php | 14 -------------- src/Identities/Address.php | 9 --------- src/Identities/PrivateKey.php | 14 -------------- src/Identities/PublicKey.php | 14 -------------- src/Identities/WIF.php | 14 -------------- src/Networks/AbstractNetwork.php | 14 -------------- src/Networks/Devnet.php | 14 -------------- src/Networks/Mainnet.php | 14 -------------- src/Networks/Testnet.php | 14 -------------- .../Builder/AbstractTransactionBuilder.php | 14 -------------- src/Transactions/Builder/MultiPaymentBuilder.php | 14 -------------- .../Builder/MultiSignatureRegistrationBuilder.php | 14 -------------- src/Transactions/Builder/TransferBuilder.php | 14 -------------- .../Builder/UsernameRegistrationBuilder.php | 9 --------- .../Builder/UsernameResignationBuilder.php | 9 --------- .../Builder/ValidatorRegistrationBuilder.php | 14 -------------- .../Builder/ValidatorResignationBuilder.php | 14 -------------- src/Transactions/Builder/VoteBuilder.php | 14 -------------- src/Transactions/Deserializer.php | 14 -------------- src/Transactions/Serializer.php | 14 -------------- src/Transactions/Types/MultiPayment.php | 14 -------------- .../Types/MultiSignatureRegistration.php | 14 -------------- src/Transactions/Types/Transaction.php | 14 -------------- src/Transactions/Types/Transfer.php | 14 -------------- src/Transactions/Types/UsernameRegistration.php | 9 --------- src/Transactions/Types/UsernameResignation.php | 9 --------- src/Transactions/Types/ValidatorRegistration.php | 14 -------------- src/Transactions/Types/ValidatorResignation.php | 14 -------------- src/Transactions/Types/Vote.php | 14 -------------- src/Utils/Address.php | 9 --------- src/Utils/Message.php | 14 -------------- src/Utils/Slot.php | 14 -------------- tests/Concerns/Deserialize.php | 9 --------- tests/Concerns/Fixtures.php | 9 --------- tests/Concerns/Serialize.php | 9 --------- tests/TestCase.php | 9 --------- tests/Unit/ByteBuffer/ByteBufferTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/InitialisableTest.php | 10 ---------- tests/Unit/ByteBuffer/Concerns/OffsetableTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/PositionableTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/Reads/FloatsTest.php | 10 ---------- tests/Unit/ByteBuffer/Concerns/Reads/HexTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/Reads/IntegerTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/Reads/StringsTest.php | 10 ---------- .../Concerns/Reads/UnsignedIntegerTest.php | 10 ---------- tests/Unit/ByteBuffer/Concerns/SizeableTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/TransformableTest.php | 10 ---------- .../Unit/ByteBuffer/Concerns/Writes/FloatsTest.php | 10 ---------- tests/Unit/ByteBuffer/Concerns/Writes/HexTest.php | 10 ---------- .../ByteBuffer/Concerns/Writes/IntegerTest.php | 10 ---------- .../ByteBuffer/Concerns/Writes/StringsTest.php | 10 ---------- .../Concerns/Writes/UnsignedIntegerTest.php | 10 ---------- tests/Unit/ByteBuffer/LengthMapTest.php | 10 ---------- tests/Unit/Configuration/FeeTest.php | 12 ------------ tests/Unit/Configuration/NetworkTest.php | 12 ------------ tests/Unit/Identities/AddressTest.php | 12 ------------ tests/Unit/Identities/PrivateKeyTest.php | 12 ------------ tests/Unit/Identities/PublicKeyTest.php | 12 ------------ tests/Unit/Identities/WIFTest.php | 12 ------------ tests/Unit/Networks/DevnetTest.php | 12 ------------ tests/Unit/Networks/MainnetTest.php | 13 ------------- tests/Unit/Networks/NetworkTestCase.php | 12 ------------ tests/Unit/Networks/TestnetTest.php | 13 ------------- .../Unit/Transactions/Builder/MultiPaymentTest.php | 12 ------------ .../Builder/MultiSignatureRegistrationTest.php | 12 ------------ tests/Unit/Transactions/Builder/TransferTest.php | 12 ------------ .../Builder/UsernameRegistrationTest.php | 12 ------------ .../Builder/UsernameResignationTest.php | 11 ----------- .../Builder/ValidatorRegistrationTest.php | 12 ------------ .../Builder/ValidatorResignationTest.php | 12 ------------ tests/Unit/Transactions/Builder/VoteTest.php | 12 ------------ .../Deserializers/MultiPaymentTest.php | 12 ------------ .../MultiSignatureRegistrationTest.php | 12 ------------ .../Transactions/Deserializers/TransferTest.php | 12 ------------ .../Deserializers/UsernameRegistrationTest.php | 11 ----------- .../Deserializers/UsernameResignationTest.php | 11 ----------- .../Deserializers/ValidatorRegistrationTest.php | 12 ------------ .../Deserializers/ValidatorResignationTest.php | 12 ------------ tests/Unit/Transactions/Deserializers/VoteTest.php | 12 ------------ .../Transactions/Serializers/MultiPaymentTest.php | 12 ------------ .../Serializers/MultiSignatureRegistrationTest.php | 12 ------------ .../Unit/Transactions/Serializers/TransferTest.php | 12 ------------ .../Serializers/UsernameRegistrationTest.php | 11 ----------- .../Serializers/UsernameResignationTest.php | 11 ----------- .../Serializers/ValidatorRegistrationTest.php | 12 ------------ .../Serializers/ValidatorResignationTest.php | 12 ------------ tests/Unit/Transactions/Serializers/VoteTest.php | 12 ------------ tests/Unit/Transactions/TransactionTest.php | 12 ------------ tests/Unit/Utils/AddressTest.php | 12 ------------ tests/Unit/Utils/MessageTest.php | 12 ------------ tests/Unit/Utils/SlotTest.php | 12 ------------ 134 files changed, 3 insertions(+), 1463 deletions(-) delete mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index f59ef0e..0000000 --- a/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @faustbrian @supaiku0 @ItsANameToo diff --git a/README.md b/README.md index aa35df4..c56d745 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,6 @@ [![Latest Version](https://badgen.now.sh/github/release/ArkEcosystem/php-crypto)](https://github.com/ArkEcosystem/php-crypto/releases) [![License: MIT](https://badgen.now.sh/badge/license/MIT/green)](https://opensource.org/licenses/MIT) -> Lead Maintainer: [Brian Faust](https://github.com/faustbrian) - ## Documentation You can find installation instructions and detailed instructions on how to use this package at the [dedicated documentation site](https://docs.ark.io/sdk/cryptography/php.html). diff --git a/composer.json b/composer.json index c33c259..c1d2a33 100755 --- a/composer.json +++ b/composer.json @@ -11,9 +11,9 @@ "license": "MIT", "authors": [ { - "name": "Brian Faust", - "email": "hello@brianfaust.me", - "homepage": "https://github.com/faustbrian" + "name": "ARK Ecosystem", + "email": "info@arkscic.com", + "homepage": "https://arkscic.com" } ], "require": { diff --git a/src/Binary/Buffer/Reader/Buffer.php b/src/Binary/Buffer/Reader/Buffer.php index 4a9a351..1f02005 100644 --- a/src/Binary/Buffer/Reader/Buffer.php +++ b/src/Binary/Buffer/Reader/Buffer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Reader; class Buffer diff --git a/src/Binary/Buffer/Reader/Concerns/Hex.php b/src/Binary/Buffer/Reader/Concerns/Hex.php index 093c532..6f7695b 100644 --- a/src/Binary/Buffer/Reader/Concerns/Hex.php +++ b/src/Binary/Buffer/Reader/Concerns/Hex.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Reader\Concerns; use ArkEcosystem\Crypto\Binary\Hex\Reader; diff --git a/src/Binary/Buffer/Reader/Concerns/Integer.php b/src/Binary/Buffer/Reader/Concerns/Integer.php index 8fa1718..8a58ece 100644 --- a/src/Binary/Buffer/Reader/Concerns/Integer.php +++ b/src/Binary/Buffer/Reader/Concerns/Integer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Reader\Concerns; use ArkEcosystem\Crypto\Binary\Integer\Reader; diff --git a/src/Binary/Buffer/Reader/Concerns/UnsignedInteger.php b/src/Binary/Buffer/Reader/Concerns/UnsignedInteger.php index 5198f0c..c5edea5 100644 --- a/src/Binary/Buffer/Reader/Concerns/UnsignedInteger.php +++ b/src/Binary/Buffer/Reader/Concerns/UnsignedInteger.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Reader\Concerns; use ArkEcosystem\Crypto\Binary\UnsignedInteger\Reader; diff --git a/src/Binary/Buffer/Writer/Buffer.php b/src/Binary/Buffer/Writer/Buffer.php index a090488..6ae0291 100644 --- a/src/Binary/Buffer/Writer/Buffer.php +++ b/src/Binary/Buffer/Writer/Buffer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Writer; use ArkEcosystem\Crypto\Binary\Hex\Writer as Hex; diff --git a/src/Binary/Buffer/Writer/Concerns/Generic.php b/src/Binary/Buffer/Writer/Concerns/Generic.php index 2fbc195..2e5cf88 100644 --- a/src/Binary/Buffer/Writer/Concerns/Generic.php +++ b/src/Binary/Buffer/Writer/Concerns/Generic.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Writer\Concerns; trait Generic diff --git a/src/Binary/Buffer/Writer/Concerns/Hex.php b/src/Binary/Buffer/Writer/Concerns/Hex.php index 33b3453..93460c6 100644 --- a/src/Binary/Buffer/Writer/Concerns/Hex.php +++ b/src/Binary/Buffer/Writer/Concerns/Hex.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Writer\Concerns; use ArkEcosystem\Crypto\Binary\Hex\Writer; diff --git a/src/Binary/Buffer/Writer/Concerns/Integer.php b/src/Binary/Buffer/Writer/Concerns/Integer.php index 49c82a1..e246b65 100644 --- a/src/Binary/Buffer/Writer/Concerns/Integer.php +++ b/src/Binary/Buffer/Writer/Concerns/Integer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Writer\Concerns; use ArkEcosystem\Crypto\Binary\Integer\Writer; diff --git a/src/Binary/Buffer/Writer/Concerns/UnsignedInteger.php b/src/Binary/Buffer/Writer/Concerns/UnsignedInteger.php index dbea4e3..ffdd50b 100644 --- a/src/Binary/Buffer/Writer/Concerns/UnsignedInteger.php +++ b/src/Binary/Buffer/Writer/Concerns/UnsignedInteger.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Buffer\Writer\Concerns; use ArkEcosystem\Crypto\Binary\UnsignedInteger\Writer; diff --git a/src/Binary/Hex/Reader.php b/src/Binary/Hex/Reader.php index 84f4a94..105164e 100644 --- a/src/Binary/Hex/Reader.php +++ b/src/Binary/Hex/Reader.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Hex; /** diff --git a/src/Binary/Hex/Writer.php b/src/Binary/Hex/Writer.php index 77448e1..2ce6eb3 100644 --- a/src/Binary/Hex/Writer.php +++ b/src/Binary/Hex/Writer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Hex; /** diff --git a/src/Binary/Integer/Reader.php b/src/Binary/Integer/Reader.php index 0c47abf..a85310b 100644 --- a/src/Binary/Integer/Reader.php +++ b/src/Binary/Integer/Reader.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Integer; /** diff --git a/src/Binary/Integer/Writer.php b/src/Binary/Integer/Writer.php index 4fdc59c..f1ed60a 100644 --- a/src/Binary/Integer/Writer.php +++ b/src/Binary/Integer/Writer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\Integer; /** diff --git a/src/Binary/UnsignedInteger/Reader.php b/src/Binary/UnsignedInteger/Reader.php index 072fb8e..b490f30 100644 --- a/src/Binary/UnsignedInteger/Reader.php +++ b/src/Binary/UnsignedInteger/Reader.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\UnsignedInteger; /** diff --git a/src/Binary/UnsignedInteger/Writer.php b/src/Binary/UnsignedInteger/Writer.php index 02ff70a..eb6c859 100644 --- a/src/Binary/UnsignedInteger/Writer.php +++ b/src/Binary/UnsignedInteger/Writer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Binary\UnsignedInteger; /** diff --git a/src/ByteBuffer/ByteBuffer.php b/src/ByteBuffer/ByteBuffer.php index 8ba00bc..a503994 100644 --- a/src/ByteBuffer/ByteBuffer.php +++ b/src/ByteBuffer/ByteBuffer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer; use InvalidArgumentException; diff --git a/src/ByteBuffer/ByteOrder.php b/src/ByteBuffer/ByteOrder.php index 0ccfc17..fa437f8 100644 --- a/src/ByteBuffer/ByteOrder.php +++ b/src/ByteBuffer/ByteOrder.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer; class ByteOrder diff --git a/src/ByteBuffer/Concerns/Initialisable.php b/src/ByteBuffer/Concerns/Initialisable.php index 800a785..966f679 100644 --- a/src/ByteBuffer/Concerns/Initialisable.php +++ b/src/ByteBuffer/Concerns/Initialisable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; use InvalidArgumentException; diff --git a/src/ByteBuffer/Concerns/Offsetable.php b/src/ByteBuffer/Concerns/Offsetable.php index e949f22..22f5976 100644 --- a/src/ByteBuffer/Concerns/Offsetable.php +++ b/src/ByteBuffer/Concerns/Offsetable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; /** diff --git a/src/ByteBuffer/Concerns/Positionable.php b/src/ByteBuffer/Concerns/Positionable.php index 1fc0fd1..c7f7cb9 100644 --- a/src/ByteBuffer/Concerns/Positionable.php +++ b/src/ByteBuffer/Concerns/Positionable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; /** diff --git a/src/ByteBuffer/Concerns/Readable.php b/src/ByteBuffer/Concerns/Readable.php index 60bc332..17d6324 100644 --- a/src/ByteBuffer/Concerns/Readable.php +++ b/src/ByteBuffer/Concerns/Readable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; /** diff --git a/src/ByteBuffer/Concerns/Reads/Floats.php b/src/ByteBuffer/Concerns/Reads/Floats.php index 0984272..fecc60f 100644 --- a/src/ByteBuffer/Concerns/Reads/Floats.php +++ b/src/ByteBuffer/Concerns/Reads/Floats.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads; /** diff --git a/src/ByteBuffer/Concerns/Reads/Hex.php b/src/ByteBuffer/Concerns/Reads/Hex.php index 9e441f7..16aaeee 100644 --- a/src/ByteBuffer/Concerns/Reads/Hex.php +++ b/src/ByteBuffer/Concerns/Reads/Hex.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads; /** diff --git a/src/ByteBuffer/Concerns/Reads/Integer.php b/src/ByteBuffer/Concerns/Reads/Integer.php index 429287e..d92a77b 100644 --- a/src/ByteBuffer/Concerns/Reads/Integer.php +++ b/src/ByteBuffer/Concerns/Reads/Integer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads; /** diff --git a/src/ByteBuffer/Concerns/Reads/Strings.php b/src/ByteBuffer/Concerns/Reads/Strings.php index c5f615b..bc38836 100644 --- a/src/ByteBuffer/Concerns/Reads/Strings.php +++ b/src/ByteBuffer/Concerns/Reads/Strings.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads; /** diff --git a/src/ByteBuffer/Concerns/Reads/UnsignedInteger.php b/src/ByteBuffer/Concerns/Reads/UnsignedInteger.php index db90bf3..48632d8 100644 --- a/src/ByteBuffer/Concerns/Reads/UnsignedInteger.php +++ b/src/ByteBuffer/Concerns/Reads/UnsignedInteger.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads; /** diff --git a/src/ByteBuffer/Concerns/Sizeable.php b/src/ByteBuffer/Concerns/Sizeable.php index 15ce2d9..c133c83 100644 --- a/src/ByteBuffer/Concerns/Sizeable.php +++ b/src/ByteBuffer/Concerns/Sizeable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; /** diff --git a/src/ByteBuffer/Concerns/Transformable.php b/src/ByteBuffer/Concerns/Transformable.php index 6bb25f8..6119192 100644 --- a/src/ByteBuffer/Concerns/Transformable.php +++ b/src/ByteBuffer/Concerns/Transformable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; use InvalidArgumentException; diff --git a/src/ByteBuffer/Concerns/Writeable.php b/src/ByteBuffer/Concerns/Writeable.php index 0daa2df..fb11b8a 100644 --- a/src/ByteBuffer/Concerns/Writeable.php +++ b/src/ByteBuffer/Concerns/Writeable.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns; /** diff --git a/src/ByteBuffer/Concerns/Writes/Floats.php b/src/ByteBuffer/Concerns/Writes/Floats.php index 5f26d00..823578a 100644 --- a/src/ByteBuffer/Concerns/Writes/Floats.php +++ b/src/ByteBuffer/Concerns/Writes/Floats.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes; /** diff --git a/src/ByteBuffer/Concerns/Writes/Hex.php b/src/ByteBuffer/Concerns/Writes/Hex.php index b35f371..6b8377b 100644 --- a/src/ByteBuffer/Concerns/Writes/Hex.php +++ b/src/ByteBuffer/Concerns/Writes/Hex.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes; /** diff --git a/src/ByteBuffer/Concerns/Writes/Integer.php b/src/ByteBuffer/Concerns/Writes/Integer.php index 1028247..5446458 100644 --- a/src/ByteBuffer/Concerns/Writes/Integer.php +++ b/src/ByteBuffer/Concerns/Writes/Integer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes; /** diff --git a/src/ByteBuffer/Concerns/Writes/Strings.php b/src/ByteBuffer/Concerns/Writes/Strings.php index 2847448..1c55ec4 100644 --- a/src/ByteBuffer/Concerns/Writes/Strings.php +++ b/src/ByteBuffer/Concerns/Writes/Strings.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes; /** diff --git a/src/ByteBuffer/Concerns/Writes/UnsignedInteger.php b/src/ByteBuffer/Concerns/Writes/UnsignedInteger.php index b7561e8..5f1155a 100644 --- a/src/ByteBuffer/Concerns/Writes/UnsignedInteger.php +++ b/src/ByteBuffer/Concerns/Writes/UnsignedInteger.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes; /** diff --git a/src/ByteBuffer/LengthMap.php b/src/ByteBuffer/LengthMap.php index 552c658..7c917c4 100644 --- a/src/ByteBuffer/LengthMap.php +++ b/src/ByteBuffer/LengthMap.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\ByteBuffer; use InvalidArgumentException; diff --git a/src/Configuration/Fee.php b/src/Configuration/Fee.php index 5706a88..fe9b6e7 100644 --- a/src/Configuration/Fee.php +++ b/src/Configuration/Fee.php @@ -2,26 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Configuration; use ArkEcosystem\Crypto\Enums\Fees; use ArkEcosystem\Crypto\Enums\Types; use PHPUnit\Util\Type; -/** - * This is the fee configuration class. - * - * @author Brian Faust - */ class Fee { /** diff --git a/src/Configuration/Network.php b/src/Configuration/Network.php index 32c4d28..8e27309 100644 --- a/src/Configuration/Network.php +++ b/src/Configuration/Network.php @@ -2,26 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Configuration; use ArkEcosystem\Crypto\Networks\AbstractNetwork; use ArkEcosystem\Crypto\Networks\Devnet; use BitWasp\Bitcoin\Bitcoin; -/** - * This is the network configuration class. - * - * @author Brian Faust - */ class Network { /** diff --git a/src/Enums/Fees.php b/src/Enums/Fees.php index 60e262e..1e2e1fd 100644 --- a/src/Enums/Fees.php +++ b/src/Enums/Fees.php @@ -2,22 +2,8 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Enums; -/** - * This is the transaction fees class. - * - * @author Brian Faust - */ class Fees { public const TRANSFER = '10000000'; diff --git a/src/Enums/TypeGroup.php b/src/Enums/TypeGroup.php index e24382a..9d7e224 100644 --- a/src/Enums/TypeGroup.php +++ b/src/Enums/TypeGroup.php @@ -2,22 +2,8 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Enums; -/** - * This is the transaction type group class. - * - * @author Brian Faust - */ class TypeGroup { public const TEST = 0; diff --git a/src/Enums/Types.php b/src/Enums/Types.php index 4dc7238..753fb20 100644 --- a/src/Enums/Types.php +++ b/src/Enums/Types.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Enums; use ArkEcosystem\Crypto\Transactions\Types\MultiPayment; diff --git a/src/Helpers.php b/src/Helpers.php index 4189509..62fd962 100644 --- a/src/Helpers.php +++ b/src/Helpers.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto; use ArkEcosystem\Crypto\Configuration\Network; -/** - * This is the helpers class. - * - * @author Brian Faust - */ class Helpers { /** diff --git a/src/Identities/Address.php b/src/Identities/Address.php index 9ca6593..61da07c 100644 --- a/src/Identities/Address.php +++ b/src/Identities/Address.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Identities; use ArkEcosystem\Crypto\Networks\AbstractNetwork; diff --git a/src/Identities/PrivateKey.php b/src/Identities/PrivateKey.php index f7ec97a..16032fb 100644 --- a/src/Identities/PrivateKey.php +++ b/src/Identities/PrivateKey.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Identities; use ArkEcosystem\Crypto\Networks\AbstractNetwork; @@ -21,11 +12,6 @@ use BitWasp\Bitcoin\Key\Factory\PrivateKeyFactory; use BitWasp\Buffertools\Buffer; -/** - * This is the private key class. - * - * @author Brian Faust - */ class PrivateKey { /** diff --git a/src/Identities/PublicKey.php b/src/Identities/PublicKey.php index 9c4252c..01acfb3 100644 --- a/src/Identities/PublicKey.php +++ b/src/Identities/PublicKey.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Identities; use BitWasp\Bitcoin\Bitcoin; @@ -19,11 +10,6 @@ use BitWasp\Bitcoin\Key\Factory\PublicKeyFactory; use Elliptic\EC; -/** - * This is the public key class. - * - * @author Brian Faust - */ class PublicKey { /** diff --git a/src/Identities/WIF.php b/src/Identities/WIF.php index 5307cf8..03f4dbb 100644 --- a/src/Identities/WIF.php +++ b/src/Identities/WIF.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Identities; use ArkEcosystem\Crypto\Networks\AbstractNetwork; -/** - * This is the wif class. - * - * @author Brian Faust - */ class WIF { /** diff --git a/src/Networks/AbstractNetwork.php b/src/Networks/AbstractNetwork.php index ee8ffcb..a37077e 100644 --- a/src/Networks/AbstractNetwork.php +++ b/src/Networks/AbstractNetwork.php @@ -2,25 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Networks; use BitWasp\Bitcoin\Network\Network; use BitWasp\Bitcoin\Script\ScriptType; -/** - * This is the abstract network class. - * - * @author Brian Faust - */ abstract class AbstractNetwork extends Network { /** diff --git a/src/Networks/Devnet.php b/src/Networks/Devnet.php index 20768ac..313ce22 100644 --- a/src/Networks/Devnet.php +++ b/src/Networks/Devnet.php @@ -2,22 +2,8 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Networks; -/** - * This is the devnet network class. - * - * @author Brian Faust - */ class Devnet extends AbstractNetwork { /** diff --git a/src/Networks/Mainnet.php b/src/Networks/Mainnet.php index bf67a3d..5a76192 100644 --- a/src/Networks/Mainnet.php +++ b/src/Networks/Mainnet.php @@ -2,22 +2,8 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Networks; -/** - * This is the mainnet network class. - * - * @author Brian Faust - */ class Mainnet extends AbstractNetwork { /** diff --git a/src/Networks/Testnet.php b/src/Networks/Testnet.php index 5e727a4..0ee1d1a 100644 --- a/src/Networks/Testnet.php +++ b/src/Networks/Testnet.php @@ -2,22 +2,8 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Networks; -/** - * This is the testnet network class. - * - * @author Brian Faust - */ class Testnet extends AbstractNetwork { /** diff --git a/src/Transactions/Builder/AbstractTransactionBuilder.php b/src/Transactions/Builder/AbstractTransactionBuilder.php index c2068f6..9b98c73 100644 --- a/src/Transactions/Builder/AbstractTransactionBuilder.php +++ b/src/Transactions/Builder/AbstractTransactionBuilder.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Configuration\Fee; @@ -18,11 +9,6 @@ use ArkEcosystem\Crypto\Identities\PrivateKey; use ArkEcosystem\Crypto\Transactions\Types\Transaction; -/** - * This is the abstract transaction class. - * - * @author Brian Faust - */ abstract class AbstractTransactionBuilder { public $transaction; diff --git a/src/Transactions/Builder/MultiPaymentBuilder.php b/src/Transactions/Builder/MultiPaymentBuilder.php index 927d1b4..18c7a48 100644 --- a/src/Transactions/Builder/MultiPaymentBuilder.php +++ b/src/Transactions/Builder/MultiPaymentBuilder.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\MultiPayment; -/** - * This is the multi payment transaction class. - * - * @author Brian Faust - */ class MultiPaymentBuilder extends AbstractTransactionBuilder { /** diff --git a/src/Transactions/Builder/MultiSignatureRegistrationBuilder.php b/src/Transactions/Builder/MultiSignatureRegistrationBuilder.php index 0aaaa6c..838f4d7 100644 --- a/src/Transactions/Builder/MultiSignatureRegistrationBuilder.php +++ b/src/Transactions/Builder/MultiSignatureRegistrationBuilder.php @@ -2,25 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\MultiSignatureRegistration; use Illuminate\Support\Arr; -/** - * This is the multisignature registration transaction class. - * - * @author Brian Faust - */ class MultiSignatureRegistrationBuilder extends AbstractTransactionBuilder { /** diff --git a/src/Transactions/Builder/TransferBuilder.php b/src/Transactions/Builder/TransferBuilder.php index eeac3a7..412e4fd 100644 --- a/src/Transactions/Builder/TransferBuilder.php +++ b/src/Transactions/Builder/TransferBuilder.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\Transfer; -/** - * This is the transfer transaction class. - * - * @author Brian Faust - */ class TransferBuilder extends AbstractTransactionBuilder { public function __construct() diff --git a/src/Transactions/Builder/UsernameRegistrationBuilder.php b/src/Transactions/Builder/UsernameRegistrationBuilder.php index 4099f45..85d7502 100644 --- a/src/Transactions/Builder/UsernameRegistrationBuilder.php +++ b/src/Transactions/Builder/UsernameRegistrationBuilder.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\UsernameRegistration; diff --git a/src/Transactions/Builder/UsernameResignationBuilder.php b/src/Transactions/Builder/UsernameResignationBuilder.php index 4e13240..40b0fed 100644 --- a/src/Transactions/Builder/UsernameResignationBuilder.php +++ b/src/Transactions/Builder/UsernameResignationBuilder.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\UsernameResignation; diff --git a/src/Transactions/Builder/ValidatorRegistrationBuilder.php b/src/Transactions/Builder/ValidatorRegistrationBuilder.php index d3e4116..3dce486 100644 --- a/src/Transactions/Builder/ValidatorRegistrationBuilder.php +++ b/src/Transactions/Builder/ValidatorRegistrationBuilder.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\ValidatorRegistration; -/** - * This is the delegate registration transaction class. - * - * @author Brian Faust - */ class ValidatorRegistrationBuilder extends AbstractTransactionBuilder { /** diff --git a/src/Transactions/Builder/ValidatorResignationBuilder.php b/src/Transactions/Builder/ValidatorResignationBuilder.php index 176ffd7..428e8c6 100644 --- a/src/Transactions/Builder/ValidatorResignationBuilder.php +++ b/src/Transactions/Builder/ValidatorResignationBuilder.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Transactions\Types\ValidatorResignation; -/** - * This is the valiadator resignation transaction class. - * - * @author Brian Faust - */ class ValidatorResignationBuilder extends AbstractTransactionBuilder { protected function getType(): int diff --git a/src/Transactions/Builder/VoteBuilder.php b/src/Transactions/Builder/VoteBuilder.php index d4ef117..71dbc74 100644 --- a/src/Transactions/Builder/VoteBuilder.php +++ b/src/Transactions/Builder/VoteBuilder.php @@ -2,26 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Builder; use ArkEcosystem\Crypto\Configuration\Network; use ArkEcosystem\Crypto\Identities\Address; use ArkEcosystem\Crypto\Transactions\Types\Vote; -/** - * This is the vote transaction class. - * - * @author Brian Faust - */ class VoteBuilder extends AbstractTransactionBuilder { /** diff --git a/src/Transactions/Deserializer.php b/src/Transactions/Deserializer.php index c0b9924..76fb9a2 100644 --- a/src/Transactions/Deserializer.php +++ b/src/Transactions/Deserializer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; @@ -18,11 +9,6 @@ use ArkEcosystem\Crypto\Transactions\Types\Transaction; use BitWasp\Bitcoin\Crypto\Hash; -/** - * This is the deserializer class. - * - * @author Brian Faust - */ class Deserializer { private ByteBuffer $buffer; diff --git a/src/Transactions/Serializer.php b/src/Transactions/Serializer.php index df85edc..fe3d625 100644 --- a/src/Transactions/Serializer.php +++ b/src/Transactions/Serializer.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; @@ -19,11 +10,6 @@ use ArkEcosystem\Crypto\Transactions\Types\Transaction; use BitWasp\Buffertools\Buffer; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class Serializer { public Transaction $transaction; diff --git a/src/Transactions/Types/MultiPayment.php b/src/Transactions/Types/MultiPayment.php index dfab336..569c5d7 100644 --- a/src/Transactions/Types/MultiPayment.php +++ b/src/Transactions/Types/MultiPayment.php @@ -2,25 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use ArkEcosystem\Crypto\Utils\Address; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class MultiPayment extends Transaction { /** diff --git a/src/Transactions/Types/MultiSignatureRegistration.php b/src/Transactions/Types/MultiSignatureRegistration.php index 24add20..460b550 100644 --- a/src/Transactions/Types/MultiSignatureRegistration.php +++ b/src/Transactions/Types/MultiSignatureRegistration.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class MultiSignatureRegistration extends Transaction { public function serializeData(array $options = []): ByteBuffer diff --git a/src/Transactions/Types/Transaction.php b/src/Transactions/Types/Transaction.php index 6d968de..7e4e622 100644 --- a/src/Transactions/Types/Transaction.php +++ b/src/Transactions/Types/Transaction.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; @@ -20,11 +11,6 @@ use BitWasp\Bitcoin\Crypto\Hash; use BitWasp\Buffertools\Buffer; -/** - * This is the transaction class. - * - * @author Brian Faust - */ abstract class Transaction { /** diff --git a/src/Transactions/Types/Transfer.php b/src/Transactions/Types/Transfer.php index 9f8ddb7..7fcc8f2 100644 --- a/src/Transactions/Types/Transfer.php +++ b/src/Transactions/Types/Transfer.php @@ -2,25 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use ArkEcosystem\Crypto\Utils\Address; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class Transfer extends Transaction { public function serializeData(array $options = []): ByteBuffer diff --git a/src/Transactions/Types/UsernameRegistration.php b/src/Transactions/Types/UsernameRegistration.php index 3b334a6..38f4148 100644 --- a/src/Transactions/Types/UsernameRegistration.php +++ b/src/Transactions/Types/UsernameRegistration.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; diff --git a/src/Transactions/Types/UsernameResignation.php b/src/Transactions/Types/UsernameResignation.php index 60ce5ec..0b9b7a9 100644 --- a/src/Transactions/Types/UsernameResignation.php +++ b/src/Transactions/Types/UsernameResignation.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; diff --git a/src/Transactions/Types/ValidatorRegistration.php b/src/Transactions/Types/ValidatorRegistration.php index 14ce216..f8cc8bc 100644 --- a/src/Transactions/Types/ValidatorRegistration.php +++ b/src/Transactions/Types/ValidatorRegistration.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class ValidatorRegistration extends Transaction { public function serializeData(array $options = []): ByteBuffer diff --git a/src/Transactions/Types/ValidatorResignation.php b/src/Transactions/Types/ValidatorResignation.php index d421401..80332f3 100644 --- a/src/Transactions/Types/ValidatorResignation.php +++ b/src/Transactions/Types/ValidatorResignation.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class ValidatorResignation extends Transaction { public function serializeData(array $options = []): ByteBuffer diff --git a/src/Transactions/Types/Vote.php b/src/Transactions/Types/Vote.php index 8f73032..61ed67e 100644 --- a/src/Transactions/Types/Vote.php +++ b/src/Transactions/Types/Vote.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Transactions\Types; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; -/** - * This is the serializer class. - * - * @author Brian Faust - */ class Vote extends Transaction { public function serializeData(array $options = []): ByteBuffer diff --git a/src/Utils/Address.php b/src/Utils/Address.php index d856478..880e09d 100644 --- a/src/Utils/Address.php +++ b/src/Utils/Address.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Utils; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; diff --git a/src/Utils/Message.php b/src/Utils/Message.php index f406788..30d648c 100644 --- a/src/Utils/Message.php +++ b/src/Utils/Message.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Utils; use ArkEcosystem\Crypto\Identities\PrivateKey; @@ -20,11 +11,6 @@ use BitWasp\Buffertools\Buffer; use InvalidArgumentException; -/** - * This is the message class. - * - * @author Brian Faust - */ class Message { /** diff --git a/src/Utils/Slot.php b/src/Utils/Slot.php index 8e9eaf5..1a27b62 100644 --- a/src/Utils/Slot.php +++ b/src/Utils/Slot.php @@ -2,24 +2,10 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Crypto\Utils; use ArkEcosystem\Crypto\Configuration\Network; -/** - * This is the slot class. - * - * @author Brian Faust - */ class Slot { /** diff --git a/tests/Concerns/Deserialize.php b/tests/Concerns/Deserialize.php index c468ee6..df43e61 100644 --- a/tests/Concerns/Deserialize.php +++ b/tests/Concerns/Deserialize.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns; use ArkEcosystem\Crypto\Transactions\Deserializer; diff --git a/tests/Concerns/Fixtures.php b/tests/Concerns/Fixtures.php index 8fa48ac..ded3c35 100644 --- a/tests/Concerns/Fixtures.php +++ b/tests/Concerns/Fixtures.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns; trait Fixtures diff --git a/tests/Concerns/Serialize.php b/tests/Concerns/Serialize.php index 2eb37c5..f67f2e0 100644 --- a/tests/Concerns/Serialize.php +++ b/tests/Concerns/Serialize.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns; use ArkEcosystem\Crypto\Enums\Types; diff --git a/tests/TestCase.php b/tests/TestCase.php index 0301415..9d3d4fc 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto; use ArkEcosystem\Crypto\Configuration\Network; diff --git a/tests/Unit/ByteBuffer/ByteBufferTest.php b/tests/Unit/ByteBuffer/ByteBufferTest.php index a03a0a4..a8728ef 100644 --- a/tests/Unit/ByteBuffer/ByteBufferTest.php +++ b/tests/Unit/ByteBuffer/ByteBufferTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the length map test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\ByteBuffer */ class ByteBufferTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/InitialisableTest.php b/tests/Unit/ByteBuffer/Concerns/InitialisableTest.php index dbc6f66..8d75d5a 100644 --- a/tests/Unit/ByteBuffer/Concerns/InitialisableTest.php +++ b/tests/Unit/ByteBuffer/Concerns/InitialisableTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the initialisable test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Initialisable */ class InitialisableTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/OffsetableTest.php b/tests/Unit/ByteBuffer/Concerns/OffsetableTest.php index d484d45..bd6152b 100644 --- a/tests/Unit/ByteBuffer/Concerns/OffsetableTest.php +++ b/tests/Unit/ByteBuffer/Concerns/OffsetableTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the offsetable test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Offsetable */ class OffsetableTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/PositionableTest.php b/tests/Unit/ByteBuffer/Concerns/PositionableTest.php index 491028a..5020330 100644 --- a/tests/Unit/ByteBuffer/Concerns/PositionableTest.php +++ b/tests/Unit/ByteBuffer/Concerns/PositionableTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the positionable test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Positionable */ class PositionableTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Reads/FloatsTest.php b/tests/Unit/ByteBuffer/Concerns/Reads/FloatsTest.php index 439496c..0e1f1b3 100644 --- a/tests/Unit/ByteBuffer/Concerns/Reads/FloatsTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Reads/FloatsTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the integer reader test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads\Floats */ class FloatsTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Reads/HexTest.php b/tests/Unit/ByteBuffer/Concerns/Reads/HexTest.php index 952cbb7..5ef81ad 100644 --- a/tests/Unit/ByteBuffer/Concerns/Reads/HexTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Reads/HexTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the hex reader test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads\Hex */ class HexTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Reads/IntegerTest.php b/tests/Unit/ByteBuffer/Concerns/Reads/IntegerTest.php index 2aacbd5..89bd832 100644 --- a/tests/Unit/ByteBuffer/Concerns/Reads/IntegerTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Reads/IntegerTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the integer reader test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads\Integer */ class IntegerTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Reads/StringsTest.php b/tests/Unit/ByteBuffer/Concerns/Reads/StringsTest.php index dcf81c1..64f33e8 100644 --- a/tests/Unit/ByteBuffer/Concerns/Reads/StringsTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Reads/StringsTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the string reader test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads\Strings */ class StringsTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Reads/UnsignedIntegerTest.php b/tests/Unit/ByteBuffer/Concerns/Reads/UnsignedIntegerTest.php index dd1b868..2b666d0 100644 --- a/tests/Unit/ByteBuffer/Concerns/Reads/UnsignedIntegerTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Reads/UnsignedIntegerTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the unsigned integer reader test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Reads\UnsignedInteger */ class UnsignedIntegerTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/SizeableTest.php b/tests/Unit/ByteBuffer/Concerns/SizeableTest.php index 133b12a..5bbb5f6 100644 --- a/tests/Unit/ByteBuffer/Concerns/SizeableTest.php +++ b/tests/Unit/ByteBuffer/Concerns/SizeableTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the sizeable test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Sizeable */ class SizeableTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/TransformableTest.php b/tests/Unit/ByteBuffer/Concerns/TransformableTest.php index 2223c50..452b910 100644 --- a/tests/Unit/ByteBuffer/Concerns/TransformableTest.php +++ b/tests/Unit/ByteBuffer/Concerns/TransformableTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Reads; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the transformable test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Transformable */ class TransformableTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Writes/FloatsTest.php b/tests/Unit/ByteBuffer/Concerns/Writes/FloatsTest.php index c11274c..8eddd52 100644 --- a/tests/Unit/ByteBuffer/Concerns/Writes/FloatsTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Writes/FloatsTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Writes; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the integer writer test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes\Floats */ class FloatsTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Writes/HexTest.php b/tests/Unit/ByteBuffer/Concerns/Writes/HexTest.php index bb396a0..1a04663 100644 --- a/tests/Unit/ByteBuffer/Concerns/Writes/HexTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Writes/HexTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Writes; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the hex writer test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes\Hex */ class HexTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Writes/IntegerTest.php b/tests/Unit/ByteBuffer/Concerns/Writes/IntegerTest.php index fcca0dd..6ff9654 100644 --- a/tests/Unit/ByteBuffer/Concerns/Writes/IntegerTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Writes/IntegerTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Writes; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the integer writer test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes\Integer */ class IntegerTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Writes/StringsTest.php b/tests/Unit/ByteBuffer/Concerns/Writes/StringsTest.php index 27b037d..508ee8a 100644 --- a/tests/Unit/ByteBuffer/Concerns/Writes/StringsTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Writes/StringsTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Writes; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the string writer test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes\Strings */ class StringsTest extends TestCase diff --git a/tests/Unit/ByteBuffer/Concerns/Writes/UnsignedIntegerTest.php b/tests/Unit/ByteBuffer/Concerns/Writes/UnsignedIntegerTest.php index 9b14da1..fbcaa34 100644 --- a/tests/Unit/ByteBuffer/Concerns/Writes/UnsignedIntegerTest.php +++ b/tests/Unit/ByteBuffer/Concerns/Writes/UnsignedIntegerTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Concerns\Writes; use ArkEcosystem\Crypto\ByteBuffer\ByteBuffer; use PHPUnit\Framework\TestCase; /** - * This is the unsigned integer writer test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\Concerns\Writes\UnsignedInteger */ class UnsignedIntegerTest extends TestCase diff --git a/tests/Unit/ByteBuffer/LengthMapTest.php b/tests/Unit/ByteBuffer/LengthMapTest.php index 26aba39..a268849 100644 --- a/tests/Unit/ByteBuffer/LengthMapTest.php +++ b/tests/Unit/ByteBuffer/LengthMapTest.php @@ -2,22 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto; use ArkEcosystem\Crypto\ByteBuffer\LengthMap; use PHPUnit\Framework\TestCase; /** - * This is the length map test class. * @covers \ArkEcosystem\Crypto\ByteBuffer\LengthMap */ class LengthMapTest extends TestCase diff --git a/tests/Unit/Configuration/FeeTest.php b/tests/Unit/Configuration/FeeTest.php index c0eb103..654c833 100644 --- a/tests/Unit/Configuration/FeeTest.php +++ b/tests/Unit/Configuration/FeeTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Managers; use ArkEcosystem\Crypto\Configuration\Fee; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the fee configuration test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Configuration\Fee */ class FeeTest extends TestCase diff --git a/tests/Unit/Configuration/NetworkTest.php b/tests/Unit/Configuration/NetworkTest.php index 602f358..e02e75a 100644 --- a/tests/Unit/Configuration/NetworkTest.php +++ b/tests/Unit/Configuration/NetworkTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Managers; use ArkEcosystem\Crypto\Configuration\Network; @@ -20,9 +11,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the network configuration test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Configuration\Network */ class NetworkTest extends TestCase diff --git a/tests/Unit/Identities/AddressTest.php b/tests/Unit/Identities/AddressTest.php index e14f149..d1c8ba0 100644 --- a/tests/Unit/Identities/AddressTest.php +++ b/tests/Unit/Identities/AddressTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Identities; use ArkEcosystem\Crypto\Configuration\Network; @@ -20,9 +11,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the address test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Identities\Address */ class AddressTest extends TestCase diff --git a/tests/Unit/Identities/PrivateKeyTest.php b/tests/Unit/Identities/PrivateKeyTest.php index 8a60d49..d718595 100644 --- a/tests/Unit/Identities/PrivateKeyTest.php +++ b/tests/Unit/Identities/PrivateKeyTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Identities; use ArkEcosystem\Crypto\Identities\PrivateKey as TestClass; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the address test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Identities\PrivateKey */ class PrivateKeyTest extends TestCase diff --git a/tests/Unit/Identities/PublicKeyTest.php b/tests/Unit/Identities/PublicKeyTest.php index 19f0749..91a7bb1 100644 --- a/tests/Unit/Identities/PublicKeyTest.php +++ b/tests/Unit/Identities/PublicKeyTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Identities; use ArkEcosystem\Crypto\Identities\PublicKey as TestClass; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the address test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Identities\PublicKey */ class PublicKeyTest extends TestCase diff --git a/tests/Unit/Identities/WIFTest.php b/tests/Unit/Identities/WIFTest.php index 00381c9..d989b98 100644 --- a/tests/Unit/Identities/WIFTest.php +++ b/tests/Unit/Identities/WIFTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Identities; use ArkEcosystem\Crypto\Identities\WIF as TestClass; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the address test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Identities\WIF */ class WIFTest extends TestCase diff --git a/tests/Unit/Networks/DevnetTest.php b/tests/Unit/Networks/DevnetTest.php index a95eef2..129d444 100644 --- a/tests/Unit/Networks/DevnetTest.php +++ b/tests/Unit/Networks/DevnetTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Networks; use ArkEcosystem\Crypto\Networks\Devnet; /** - * This is the devnet network test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Networks\Devnet */ class DevnetTest extends NetworkTestCase diff --git a/tests/Unit/Networks/MainnetTest.php b/tests/Unit/Networks/MainnetTest.php index e9bf169..05e36b8 100644 --- a/tests/Unit/Networks/MainnetTest.php +++ b/tests/Unit/Networks/MainnetTest.php @@ -2,24 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Networks; use ArkEcosystem\Crypto\Networks\Mainnet; -use BitWasp\Bitcoin\Network\Network; /** - * This is the mainnet network test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Networks\Mainnet */ class MainnetTest extends NetworkTestCase diff --git a/tests/Unit/Networks/NetworkTestCase.php b/tests/Unit/Networks/NetworkTestCase.php index fdc45ce..6ab84ac 100644 --- a/tests/Unit/Networks/NetworkTestCase.php +++ b/tests/Unit/Networks/NetworkTestCase.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Networks; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the devnet network test class. - * - * @author Brian Faust * @coversNothing */ class NetworkTestCase extends TestCase diff --git a/tests/Unit/Networks/TestnetTest.php b/tests/Unit/Networks/TestnetTest.php index 7da0de9..b8ad0cc 100644 --- a/tests/Unit/Networks/TestnetTest.php +++ b/tests/Unit/Networks/TestnetTest.php @@ -2,24 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Networks; use ArkEcosystem\Crypto\Networks\Testnet; -use BitWasp\Bitcoin\Network\Network; /** - * This is the testnet network test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Networks\Testnet */ class TestnetTest extends NetworkTestCase diff --git a/tests/Unit/Transactions/Builder/MultiPaymentTest.php b/tests/Unit/Transactions/Builder/MultiPaymentTest.php index 0d9ae20..02d31ad 100644 --- a/tests/Unit/Transactions/Builder/MultiPaymentTest.php +++ b/tests/Unit/Transactions/Builder/MultiPaymentTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi payment builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\MultiPaymentBuilder */ class MultiPaymentTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/MultiSignatureRegistrationTest.php b/tests/Unit/Transactions/Builder/MultiSignatureRegistrationTest.php index ef53295..ae56e3f 100644 --- a/tests/Unit/Transactions/Builder/MultiSignatureRegistrationTest.php +++ b/tests/Unit/Transactions/Builder/MultiSignatureRegistrationTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi signature registration builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\MultiSignatureRegistrationBuilder */ class MultiSignatureRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/TransferTest.php b/tests/Unit/Transactions/Builder/TransferTest.php index 6b0e6eb..f49cdd0 100644 --- a/tests/Unit/Transactions/Builder/TransferTest.php +++ b/tests/Unit/Transactions/Builder/TransferTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the transfer builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\TransferBuilder */ class TransferTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/UsernameRegistrationTest.php b/tests/Unit/Transactions/Builder/UsernameRegistrationTest.php index bb7c029..448124e 100644 --- a/tests/Unit/Transactions/Builder/UsernameRegistrationTest.php +++ b/tests/Unit/Transactions/Builder/UsernameRegistrationTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\UsernameRegistrationBuilder */ class UsernameRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/UsernameResignationTest.php b/tests/Unit/Transactions/Builder/UsernameResignationTest.php index ee02ebb..3c45c8b 100644 --- a/tests/Unit/Transactions/Builder/UsernameResignationTest.php +++ b/tests/Unit/Transactions/Builder/UsernameResignationTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,8 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the username resignation builder test class. - * * @covers \ArkEcosystem\Crypto\Transactions\Builder\UsernameResignationBuilder */ class UsernameResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/ValidatorRegistrationTest.php b/tests/Unit/Transactions/Builder/ValidatorRegistrationTest.php index 7e07686..1f68b0d 100644 --- a/tests/Unit/Transactions/Builder/ValidatorRegistrationTest.php +++ b/tests/Unit/Transactions/Builder/ValidatorRegistrationTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\ValidatorRegistrationBuilder */ class ValidatorRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/ValidatorResignationTest.php b/tests/Unit/Transactions/Builder/ValidatorResignationTest.php index d9f22b5..cbe59be 100644 --- a/tests/Unit/Transactions/Builder/ValidatorResignationTest.php +++ b/tests/Unit/Transactions/Builder/ValidatorResignationTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate resignation builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\ValidatorResignationBuilder */ class ValidatorResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Builder/VoteTest.php b/tests/Unit/Transactions/Builder/VoteTest.php index a34f08b..a2dc3d6 100644 --- a/tests/Unit/Transactions/Builder/VoteTest.php +++ b/tests/Unit/Transactions/Builder/VoteTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Builder; use ArkEcosystem\Crypto\Identities\PublicKey; @@ -18,9 +9,6 @@ use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the vote builder test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Builder\VoteBuilder */ class VoteTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/MultiPaymentTest.php b/tests/Unit/Transactions/Deserializers/MultiPaymentTest.php index ac5359c..f99d359 100644 --- a/tests/Unit/Transactions/Deserializers/MultiPaymentTest.php +++ b/tests/Unit/Transactions/Deserializers/MultiPaymentTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\MultiPayment; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi payment deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\MultiPayment */ class MultiPaymentTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/MultiSignatureRegistrationTest.php b/tests/Unit/Transactions/Deserializers/MultiSignatureRegistrationTest.php index cfada90..172b8fd 100644 --- a/tests/Unit/Transactions/Deserializers/MultiSignatureRegistrationTest.php +++ b/tests/Unit/Transactions/Deserializers/MultiSignatureRegistrationTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\MultiSignatureRegistration; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi signature registration deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\MultiSignatureRegistration */ class MultiSignatureRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/TransferTest.php b/tests/Unit/Transactions/Deserializers/TransferTest.php index 36dd2e2..5c7866b 100644 --- a/tests/Unit/Transactions/Deserializers/TransferTest.php +++ b/tests/Unit/Transactions/Deserializers/TransferTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\Transfer; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the transfer deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\Transfer */ class TransferTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/UsernameRegistrationTest.php b/tests/Unit/Transactions/Deserializers/UsernameRegistrationTest.php index 8dc2054..94688cd 100644 --- a/tests/Unit/Transactions/Deserializers/UsernameRegistrationTest.php +++ b/tests/Unit/Transactions/Deserializers/UsernameRegistrationTest.php @@ -2,23 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\UsernameRegistration; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration deserializer test class. - * * @covers \ArkEcosystem\Crypto\Transactions\Types\UsernameRegistration */ class UsernameRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/UsernameResignationTest.php b/tests/Unit/Transactions/Deserializers/UsernameResignationTest.php index b34c8ce..022652b 100644 --- a/tests/Unit/Transactions/Deserializers/UsernameResignationTest.php +++ b/tests/Unit/Transactions/Deserializers/UsernameResignationTest.php @@ -2,23 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\UsernameResignation; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration deserializer test class. - * * @covers \ArkEcosystem\Crypto\Transactions\Types\UsernameResignation */ class UsernameResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/ValidatorRegistrationTest.php b/tests/Unit/Transactions/Deserializers/ValidatorRegistrationTest.php index 9720994..c57b6a1 100644 --- a/tests/Unit/Transactions/Deserializers/ValidatorRegistrationTest.php +++ b/tests/Unit/Transactions/Deserializers/ValidatorRegistrationTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\ValidatorRegistration; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\ValidatorRegistration */ class ValidatorRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/ValidatorResignationTest.php b/tests/Unit/Transactions/Deserializers/ValidatorResignationTest.php index 73e8b8d..d2b9fb9 100644 --- a/tests/Unit/Transactions/Deserializers/ValidatorResignationTest.php +++ b/tests/Unit/Transactions/Deserializers/ValidatorResignationTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\ValidatorResignation; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate resignation deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\ValidatorResignation */ class ValidatorResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Deserializers/VoteTest.php b/tests/Unit/Transactions/Deserializers/VoteTest.php index 2fa470d..932dd05 100644 --- a/tests/Unit/Transactions/Deserializers/VoteTest.php +++ b/tests/Unit/Transactions/Deserializers/VoteTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Deserializers; use ArkEcosystem\Crypto\Transactions\Types\Vote; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the vote deserializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\Vote */ class VoteTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/MultiPaymentTest.php b/tests/Unit/Transactions/Serializers/MultiPaymentTest.php index a2ce55a..d21e8a9 100644 --- a/tests/Unit/Transactions/Serializers/MultiPaymentTest.php +++ b/tests/Unit/Transactions/Serializers/MultiPaymentTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi payment serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\MultiPayment */ class MultiPaymentTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/MultiSignatureRegistrationTest.php b/tests/Unit/Transactions/Serializers/MultiSignatureRegistrationTest.php index 8ca9cc4..9d0e8f4 100644 --- a/tests/Unit/Transactions/Serializers/MultiSignatureRegistrationTest.php +++ b/tests/Unit/Transactions/Serializers/MultiSignatureRegistrationTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the multi signature registration serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\MultiSignatureRegistration */ class MultiSignatureRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/TransferTest.php b/tests/Unit/Transactions/Serializers/TransferTest.php index d8e551d..74484e0 100644 --- a/tests/Unit/Transactions/Serializers/TransferTest.php +++ b/tests/Unit/Transactions/Serializers/TransferTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the transfer serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\Transfer */ class TransferTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/UsernameRegistrationTest.php b/tests/Unit/Transactions/Serializers/UsernameRegistrationTest.php index e4fc29c..e0a6d48 100644 --- a/tests/Unit/Transactions/Serializers/UsernameRegistrationTest.php +++ b/tests/Unit/Transactions/Serializers/UsernameRegistrationTest.php @@ -2,22 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration serializer test class. - * * @covers \ArkEcosystem\Crypto\Transactions\Types\UsernameRegistration */ class UsernameRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/UsernameResignationTest.php b/tests/Unit/Transactions/Serializers/UsernameResignationTest.php index c35cbec..efd21fa 100644 --- a/tests/Unit/Transactions/Serializers/UsernameResignationTest.php +++ b/tests/Unit/Transactions/Serializers/UsernameResignationTest.php @@ -2,22 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the username resignation serializer test class. - * * @covers \ArkEcosystem\Crypto\Transactions\Types\UsernameResignation */ class UsernameResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/ValidatorRegistrationTest.php b/tests/Unit/Transactions/Serializers/ValidatorRegistrationTest.php index c4c26df..e2e4aa5 100644 --- a/tests/Unit/Transactions/Serializers/ValidatorRegistrationTest.php +++ b/tests/Unit/Transactions/Serializers/ValidatorRegistrationTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate registration serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\ValidatorRegistration */ class ValidatorRegistrationTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/ValidatorResignationTest.php b/tests/Unit/Transactions/Serializers/ValidatorResignationTest.php index e859fb1..e5c772b 100644 --- a/tests/Unit/Transactions/Serializers/ValidatorResignationTest.php +++ b/tests/Unit/Transactions/Serializers/ValidatorResignationTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the delegate resignation serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\ValidatorResignation */ class ValidatorResignationTest extends TestCase diff --git a/tests/Unit/Transactions/Serializers/VoteTest.php b/tests/Unit/Transactions/Serializers/VoteTest.php index 51cdda5..dfd0780 100644 --- a/tests/Unit/Transactions/Serializers/VoteTest.php +++ b/tests/Unit/Transactions/Serializers/VoteTest.php @@ -2,23 +2,11 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the vote serializer test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\Vote */ class VoteTest extends TestCase diff --git a/tests/Unit/Transactions/TransactionTest.php b/tests/Unit/Transactions/TransactionTest.php index ae956d5..cb32c79 100644 --- a/tests/Unit/Transactions/TransactionTest.php +++ b/tests/Unit/Transactions/TransactionTest.php @@ -2,15 +2,6 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Transactions\Serializers; use ArkEcosystem\Crypto\Identities\PrivateKey; @@ -20,9 +11,6 @@ use BitWasp\Buffertools\Buffer; /** - * This is the transaction test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Transactions\Types\Transaction */ class TransactionTest extends TestCase diff --git a/tests/Unit/Utils/AddressTest.php b/tests/Unit/Utils/AddressTest.php index a9f3957..2046c14 100644 --- a/tests/Unit/Utils/AddressTest.php +++ b/tests/Unit/Utils/AddressTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Utils; use ArkEcosystem\Crypto\Utils\Address as TestClass; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the address test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Identities\Address */ class AddressTest extends TestCase diff --git a/tests/Unit/Utils/MessageTest.php b/tests/Unit/Utils/MessageTest.php index 5fd0e4e..e32e53b 100644 --- a/tests/Unit/Utils/MessageTest.php +++ b/tests/Unit/Utils/MessageTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Utils; use ArkEcosystem\Crypto\Utils\Message; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the message test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Utils\Message */ class MessageTest extends TestCase diff --git a/tests/Unit/Utils/SlotTest.php b/tests/Unit/Utils/SlotTest.php index 6a7ff83..ed9694c 100644 --- a/tests/Unit/Utils/SlotTest.php +++ b/tests/Unit/Utils/SlotTest.php @@ -2,24 +2,12 @@ declare(strict_types=1); -/* - * This file is part of Ark PHP Crypto. - * - * (c) Ark Ecosystem - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace ArkEcosystem\Tests\Crypto\Unit\Utils; use ArkEcosystem\Crypto\Utils\Slot; use ArkEcosystem\Tests\Crypto\TestCase; /** - * This is the slot test class. - * - * @author Brian Faust * @covers \ArkEcosystem\Crypto\Utils\Slot */ class SlotTest extends TestCase