| Total Complexity | 5 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | abstract class AbstractTranscriptionEvent extends Event { |
||
| 35 | /** |
||
| 36 | * @since 27.0.0 |
||
| 37 | */ |
||
| 38 | public function __construct( |
||
| 39 | private int $fileIdId, |
||
| 40 | private ?File $file, |
||
| 41 | private ?string $userId, |
||
| 42 | private string $appId, |
||
| 43 | ) { |
||
| 44 | parent::__construct(); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @since 27.0.0 |
||
| 49 | */ |
||
| 50 | public function getFileId(): int { |
||
| 51 | return $this->fileIdId; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @since 27.0.0 |
||
| 56 | */ |
||
| 57 | public function getFile(): ?File { |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @since 27.0.0 |
||
| 63 | */ |
||
| 64 | public function getUserId(): ?string { |
||
| 66 | } |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @since 27.0.0 |
||
| 70 | */ |
||
| 71 | public function getAppId(): string { |
||
| 73 | } |
||
| 74 | } |
||
| 75 |