Event.php 180 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Artful\Event;
  4. use Yansongda\Artful\Rocket;
  5. class Event
  6. {
  7. public function __construct(public ?Rocket $rocket = null) {}
  8. }