19 lines
206 B
PHP
19 lines
206 B
PHP
<?php
|
|
|
|
namespace Kiri\Events;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
class OnAfterCommandExecute
|
|
{
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct(public Command $command)
|
|
{
|
|
}
|
|
|
|
}
|