for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Gii\Exception;
use Exception;
use Yiisoft\Validator\Result;
final class InvalidGeneratorCommandException extends Exception
{
public function __construct(private readonly Result $result)
parent::__construct('Invalid generator data.');
}
public function getResult(): Result
return $this->result;