mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
27 lines
537 B
PHP
27 lines
537 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Wallets\Services;
|
|
|
|
|
|
class GeneratesWalletTransactionBillNo
|
|
{
|
|
|
|
|
|
private $walletTransationBillNoExists;
|
|
|
|
|
|
public function __construct(ChecksIfWalletTransactionBillNoExists $walletTransationBillNoExists)
|
|
{
|
|
$this->walletTransationBillNoExists = $walletTransationBillNoExists;
|
|
}
|
|
|
|
|
|
|
|
public function execute(): int {
|
|
|
|
$code = mt_rand(100000001, 999999999);
|
|
return !$this->walletTransationBillNoExists->execute($code) ? $code : self::execute();
|
|
|
|
}
|
|
|
|
} |