Skip to content

Commit d8c2ad8

Browse files
committed
rector fix
1 parent 9d2fdc2 commit d8c2ad8

Some content is hidden

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

49 files changed

+199
-196
lines changed

rector.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
$config->import(PHPUnitSetList::PHPUNIT_100);
1919
$config->import(SetList::CODE_QUALITY);
2020
$config->import(SetList::DEAD_CODE);
21-
$config->import(SetList::PHP_81);
21+
$config->import(SetList::PHP_82);
2222
};

src/External/Api/TransactionQuery.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Bavix\Wallet\Interfaces\Wallet;
88
use Bavix\Wallet\Models\Transaction;
99

10-
final class TransactionQuery
10+
final readonly class TransactionQuery
1111
{
1212
public const TYPE_DEPOSIT = Transaction::TYPE_DEPOSIT;
1313

@@ -18,12 +18,12 @@ final class TransactionQuery
1818
* @param array<mixed>|null $meta
1919
*/
2020
private function __construct(
21-
private readonly string $type,
22-
private readonly Wallet $wallet,
23-
private readonly float|int|string $amount,
24-
private readonly ?array $meta,
25-
private readonly bool $confirmed,
26-
private readonly ?string $uuid
21+
private string $type,
22+
private Wallet $wallet,
23+
private float|int|string $amount,
24+
private ?array $meta,
25+
private bool $confirmed,
26+
private ?string $uuid
2727
) {
2828
}
2929

src/External/Api/TransactionQueryHandler.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
/**
1414
* @internal
1515
*/
16-
final class TransactionQueryHandler implements TransactionQueryHandlerInterface
16+
final readonly class TransactionQueryHandler implements TransactionQueryHandlerInterface
1717
{
1818
public function __construct(
19-
private readonly TransactionServiceInterface $transactionService,
20-
private readonly AssistantServiceInterface $assistantService,
21-
private readonly PrepareServiceInterface $prepareService,
22-
private readonly AtomicServiceInterface $atomicService
19+
private TransactionServiceInterface $transactionService,
20+
private AssistantServiceInterface $assistantService,
21+
private PrepareServiceInterface $prepareService,
22+
private AtomicServiceInterface $atomicService
2323
) {
2424
}
2525

src/External/Api/TransferQuery.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
use Bavix\Wallet\External\Contracts\ExtraDtoInterface;
88
use Bavix\Wallet\Interfaces\Wallet;
99

10-
final class TransferQuery
10+
final readonly class TransferQuery
1111
{
1212
/**
1313
* @param array<mixed>|ExtraDtoInterface|null $meta
1414
*/
1515
public function __construct(
16-
private readonly Wallet $from,
17-
private readonly Wallet $to,
18-
private readonly float|int|string $amount,
19-
private readonly array|ExtraDtoInterface|null $meta
16+
private Wallet $from,
17+
private Wallet $to,
18+
private float|int|string $amount,
19+
private array|ExtraDtoInterface|null $meta
2020
) {
2121
}
2222

src/External/Api/TransferQueryHandler.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
/**
1515
* @internal
1616
*/
17-
final class TransferQueryHandler implements TransferQueryHandlerInterface
17+
final readonly class TransferQueryHandler implements TransferQueryHandlerInterface
1818
{
1919
public function __construct(
20-
private readonly AssistantServiceInterface $assistantService,
21-
private readonly TransferServiceInterface $transferService,
22-
private readonly PrepareServiceInterface $prepareService,
23-
private readonly AtomicServiceInterface $atomicService
20+
private AssistantServiceInterface $assistantService,
21+
private TransferServiceInterface $transferService,
22+
private PrepareServiceInterface $prepareService,
23+
private AtomicServiceInterface $atomicService
2424
) {
2525
}
2626

src/External/Dto/Option.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
use Bavix\Wallet\External\Contracts\OptionDtoInterface;
88

9-
final class Option implements OptionDtoInterface
9+
final readonly class Option implements OptionDtoInterface
1010
{
1111
/**
1212
* @param null|array<mixed> $meta
1313
*/
1414
public function __construct(
15-
private readonly ?array $meta,
16-
private readonly bool $confirmed = true,
17-
private readonly ?string $uuid = null
15+
private ?array $meta,
16+
private bool $confirmed = true,
17+
private ?string $uuid = null
1818
) {
1919
}
2020

src/Internal/Assembler/BalanceUpdatedEventAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Bavix\Wallet\Internal\Service\ClockServiceInterface;
1010
use Bavix\Wallet\Models\Wallet;
1111

12-
final class BalanceUpdatedEventAssembler implements BalanceUpdatedEventAssemblerInterface
12+
final readonly class BalanceUpdatedEventAssembler implements BalanceUpdatedEventAssemblerInterface
1313
{
1414
public function __construct(
15-
private readonly ClockServiceInterface $clockService
15+
private ClockServiceInterface $clockService
1616
) {
1717
}
1818

src/Internal/Assembler/ExtraDtoAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
use Bavix\Wallet\External\Contracts\ExtraDtoInterface;
88
use Bavix\Wallet\External\Dto\Extra;
99

10-
final class ExtraDtoAssembler implements ExtraDtoAssemblerInterface
10+
final readonly class ExtraDtoAssembler implements ExtraDtoAssemblerInterface
1111
{
1212
public function __construct(
13-
private readonly OptionDtoAssemblerInterface $optionDtoAssembler
13+
private OptionDtoAssemblerInterface $optionDtoAssembler
1414
) {
1515
}
1616

src/Internal/Assembler/TransactionCreatedEventAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Bavix\Wallet\Internal\Service\ClockServiceInterface;
1010
use Bavix\Wallet\Models\Transaction;
1111

12-
final class TransactionCreatedEventAssembler implements TransactionCreatedEventAssemblerInterface
12+
final readonly class TransactionCreatedEventAssembler implements TransactionCreatedEventAssemblerInterface
1313
{
1414
public function __construct(
15-
private readonly ClockServiceInterface $clockService
15+
private ClockServiceInterface $clockService
1616
) {
1717
}
1818

src/Internal/Assembler/TransactionDtoAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Bavix\Wallet\Internal\Service\UuidFactoryServiceInterface;
1010
use Illuminate\Database\Eloquent\Model;
1111

12-
final class TransactionDtoAssembler implements TransactionDtoAssemblerInterface
12+
final readonly class TransactionDtoAssembler implements TransactionDtoAssemblerInterface
1313
{
1414
public function __construct(
15-
private readonly UuidFactoryServiceInterface $uuidService
15+
private UuidFactoryServiceInterface $uuidService
1616
) {
1717
}
1818

src/Internal/Assembler/TransferDtoAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Bavix\Wallet\Internal\Service\UuidFactoryServiceInterface;
1010
use Illuminate\Database\Eloquent\Model;
1111

12-
final class TransferDtoAssembler implements TransferDtoAssemblerInterface
12+
final readonly class TransferDtoAssembler implements TransferDtoAssemblerInterface
1313
{
1414
public function __construct(
15-
private readonly UuidFactoryServiceInterface $uuidService
15+
private UuidFactoryServiceInterface $uuidService
1616
) {
1717
}
1818

src/Internal/Assembler/WalletCreatedEventAssembler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
use Bavix\Wallet\Internal\Service\ClockServiceInterface;
1010
use Bavix\Wallet\Models\Wallet;
1111

12-
final class WalletCreatedEventAssembler implements WalletCreatedEventAssemblerInterface
12+
final readonly class WalletCreatedEventAssembler implements WalletCreatedEventAssemblerInterface
1313
{
1414
public function __construct(
15-
private readonly ClockServiceInterface $clockService
15+
private ClockServiceInterface $clockService
1616
) {
1717
}
1818

src/Internal/Decorator/StorageServiceLockDecorator.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
use Bavix\Wallet\Internal\Service\StateServiceInterface;
1111
use Bavix\Wallet\Internal\Service\StorageServiceInterface;
1212

13-
final class StorageServiceLockDecorator implements StorageServiceInterface
13+
final readonly class StorageServiceLockDecorator implements StorageServiceInterface
1414
{
1515
public function __construct(
16-
private readonly StorageServiceInterface $storageService,
17-
private readonly StateServiceInterface $stateService,
18-
private readonly LockServiceInterface $lockService,
19-
private readonly MathServiceInterface $mathService
16+
private StorageServiceInterface $storageService,
17+
private StateServiceInterface $stateService,
18+
private LockServiceInterface $lockService,
19+
private MathServiceInterface $mathService
2020
) {
2121
}
2222

src/Internal/Dto/AvailabilityDto.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
use Bavix\Wallet\Interfaces\Customer;
88

99
/** @immutable */
10-
final class AvailabilityDto implements AvailabilityDtoInterface
10+
final readonly class AvailabilityDto implements AvailabilityDtoInterface
1111
{
1212
public function __construct(
13-
private readonly Customer $customer,
14-
private readonly BasketDtoInterface $basketDto,
15-
private readonly bool $force
13+
private Customer $customer,
14+
private BasketDtoInterface $basketDto,
15+
private bool $force
1616
) {
1717
}
1818

src/Internal/Dto/BasketDto.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
use Bavix\Wallet\Interfaces\ProductInterface;
88
use Generator;
99

10-
final class BasketDto implements BasketDtoInterface
10+
final readonly class BasketDto implements BasketDtoInterface
1111
{
1212
/**
1313
* @param non-empty-array<int|string, ItemDtoInterface> $items
1414
* @param array<mixed> $meta
1515
*/
1616
public function __construct(
17-
private readonly array $items,
18-
private readonly array $meta
17+
private array $items,
18+
private array $meta
1919
) {
2020
}
2121

src/Internal/Dto/ItemDto.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
use Bavix\Wallet\Interfaces\Wallet;
99

1010
/** @immutable */
11-
final class ItemDto implements ItemDtoInterface
11+
final readonly class ItemDto implements ItemDtoInterface
1212
{
1313
public function __construct(
14-
private readonly ProductInterface $product,
15-
private readonly int $quantity,
16-
private readonly int|string|null $pricePerItem,
17-
private readonly ?Wallet $receiving,
14+
private ProductInterface $product,
15+
private int $quantity,
16+
private int|string|null $pricePerItem,
17+
private ?Wallet $receiving,
1818
) {
1919
}
2020

src/Internal/Dto/TransactionDto.php

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@
77
use DateTimeImmutable;
88

99
/** @immutable */
10-
final class TransactionDto implements TransactionDtoInterface
10+
final readonly class TransactionDto implements TransactionDtoInterface
1111
{
12-
private readonly DateTimeImmutable $createdAt;
12+
private DateTimeImmutable $createdAt;
1313

14-
private readonly DateTimeImmutable $updatedAt;
14+
private DateTimeImmutable $updatedAt;
1515

1616
/**
1717
* @param array<mixed>|null $meta
1818
*/
1919
public function __construct(
20-
private readonly string $uuid,
21-
private readonly string $payableType,
22-
private readonly int|string $payableId,
23-
private readonly int $walletId,
24-
private readonly string $type,
25-
private readonly float|int|string $amount,
26-
private readonly bool $confirmed,
27-
private readonly ?array $meta
20+
private string $uuid,
21+
private string $payableType,
22+
private int|string $payableId,
23+
private int $walletId,
24+
private string $type,
25+
private float|int|string $amount,
26+
private bool $confirmed,
27+
private ?array $meta
2828
) {
2929
$this->createdAt = new DateTimeImmutable();
3030
$this->updatedAt = new DateTimeImmutable();

src/Internal/Dto/TransferDto.php

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77
use DateTimeImmutable;
88

99
/** @immutable */
10-
final class TransferDto implements TransferDtoInterface
10+
final readonly class TransferDto implements TransferDtoInterface
1111
{
12-
private readonly DateTimeImmutable $createdAt;
12+
private DateTimeImmutable $createdAt;
1313

14-
private readonly DateTimeImmutable $updatedAt;
14+
private DateTimeImmutable $updatedAt;
1515

1616
public function __construct(
17-
private readonly string $uuid,
18-
private readonly int $depositId,
19-
private readonly int $withdrawId,
20-
private readonly string $status,
21-
private readonly int|string $fromId,
22-
private readonly int|string $toId,
23-
private readonly int $discount,
24-
private readonly string $fee
17+
private string $uuid,
18+
private int $depositId,
19+
private int $withdrawId,
20+
private string $status,
21+
private int|string $fromId,
22+
private int|string $toId,
23+
private int $discount,
24+
private string $fee
2525
) {
2626
$this->createdAt = new DateTimeImmutable();
2727
$this->updatedAt = new DateTimeImmutable();

src/Internal/Dto/TransferLazyDto.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
use Bavix\Wallet\Interfaces\Wallet;
88

99
/** @immutable */
10-
final class TransferLazyDto implements TransferLazyDtoInterface
10+
final readonly class TransferLazyDto implements TransferLazyDtoInterface
1111
{
1212
public function __construct(
13-
private readonly Wallet $fromWallet,
14-
private readonly Wallet $toWallet,
15-
private readonly int $discount,
16-
private readonly string $fee,
17-
private readonly TransactionDtoInterface $withdrawDto,
18-
private readonly TransactionDtoInterface $depositDto,
19-
private readonly string $status,
20-
private readonly ?string $uuid
13+
private Wallet $fromWallet,
14+
private Wallet $toWallet,
15+
private int $discount,
16+
private string $fee,
17+
private TransactionDtoInterface $withdrawDto,
18+
private TransactionDtoInterface $depositDto,
19+
private string $status,
20+
private ?string $uuid
2121
) {
2222
}
2323

src/Internal/Events/BalanceUpdatedEvent.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
use DateTimeImmutable;
88

9-
final class BalanceUpdatedEvent implements BalanceUpdatedEventInterface
9+
final readonly class BalanceUpdatedEvent implements BalanceUpdatedEventInterface
1010
{
1111
public function __construct(
12-
private readonly int $walletId,
13-
private readonly string $walletUuid,
14-
private readonly string $balance,
15-
private readonly DateTimeImmutable $updatedAt
12+
private int $walletId,
13+
private string $walletUuid,
14+
private string $balance,
15+
private DateTimeImmutable $updatedAt
1616
) {
1717
}
1818

0 commit comments

Comments
 (0)