Files

19 lines
249 B
PHP
Raw Permalink Normal View History

2022-01-09 03:50:38 +08:00
<?php
namespace Kiri\Events;
2023-08-11 00:12:33 +08:00
use Symfony\Component\Console\Command\Command;
2022-01-09 03:50:38 +08:00
class OnBeforeCommandExecute
{
2023-08-11 00:12:33 +08:00
/**
* @param Command $command
*/
public function __construct(public Command $command)
{
}
2022-01-09 03:50:38 +08:00
}