| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | class TranscriptionFailedEvent extends AbstractTranscriptionEvent { |
||
| 36 | /** |
||
| 37 | * @since 27.0.0 |
||
| 38 | */ |
||
| 39 | public function __construct( |
||
| 40 | int $fileId, |
||
| 41 | ?File $file, |
||
| 42 | private string $errorMessage, |
||
| 43 | ?string $userId, |
||
| 44 | string $appId, |
||
| 45 | ) { |
||
| 46 | parent::__construct($fileId, $file, $userId, $appId); |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @since 27.0.0 |
||
| 51 | * @return string The error message |
||
| 52 | */ |
||
| 53 | public function getErrorMessage(): string { |
||
| 55 | } |
||
| 56 | } |
||
| 57 |