first commit

This commit is contained in:
2025-07-18 16:20:14 +07:00
commit 98af45c018
16382 changed files with 3148096 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Captioning;
interface FileInterface
{
/**
* @return FileInterface
*/
public function parse(): self;
/**
* @return FileInterface
*/
public function build(): self;
/**
* @param int $_from
* @param int $_to
* @return FileInterface
*/
public function buildPart(int $_from, int $_to): self;
}