Files
kiri-core/kiri-engine/Events/OnAfterCommandExecute.php
T

19 lines
239 B
PHP
Raw 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 OnAfterCommandExecute
{
2023-10-24 17:22:32 +08:00
/**
* @param Command $command
*/
2023-08-11 00:12:33 +08:00
public function __construct(public Command $command)
2022-01-09 03:50:38 +08:00
{
}
}