| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct( |
||
| 14 | #[Required] |
||
| 15 | private readonly string $prompt = 'Hello', |
||
| 16 | #[Required] |
||
| 17 | private readonly string $resultFilePath = 'src/gemini.txt', |
||
| 18 | #[Required(message: 'A code template must be selected.')] |
||
| 19 | #[TemplateRule] |
||
| 20 | protected string $template = 'default', |
||
| 21 | ) { |
||
| 22 | parent::__construct($template); |
||
| 23 | } |
||
| 61 |