first commit
This commit is contained in:
23
vendor/yansongda/pay/src/Event/Event.php
vendored
Normal file
23
vendor/yansongda/pay/src/Event/Event.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Yansongda\Pay\Event;
|
||||
|
||||
use Yansongda\Pay\Rocket;
|
||||
|
||||
class Event
|
||||
{
|
||||
/**
|
||||
* @var \Yansongda\Pay\Rocket|null
|
||||
*/
|
||||
public $rocket;
|
||||
|
||||
/**
|
||||
* Bootstrap.
|
||||
*/
|
||||
public function __construct(?Rocket $rocket)
|
||||
{
|
||||
$this->rocket = $rocket;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user