26 lines
400 B
PHP
26 lines
400 B
PHP
<?php
|
|
|
|
namespace App\Bean\Queue\Wallet;
|
|
|
|
use App\Bean\Queue\QueueBaseBean;
|
|
|
|
class QueueWalletBlockTransactionBean extends QueueBaseBean
|
|
{
|
|
const QUEUE_NAME = 'queue_wallet_block_transaction';
|
|
|
|
protected array $data = [];
|
|
|
|
public function getData(): array
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
public function setData(array $data): void
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
|
|
}
|
|
|