| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct(string $prompt, string $question, string $answer) |
||
| 15 | { |
||
| 16 | $this->command = CommandFactory::fromArray([ |
||
| 17 | CommandFactory::CONFIG_FIELD_NAME => 'forrest-ai', |
||
| 18 | CommandFactory::CONFIG_FIELD_DESCRIPTION => 'Answer to: ' . $question, |
||
| 19 | CommandFactory::CONFIG_FIELD_PROMPT => $prompt |
||
| 20 | ]); |
||
| 21 | |||
| 22 | $this->question = $question; |
||
| 23 | $this->answer = $answer; |
||
| 24 | } |
||
| 41 |