mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
18 lines
328 B
PHP
18 lines
328 B
PHP
<?php
|
|
|
|
namespace App\Libraries\WatchRecord;
|
|
|
|
interface WatchRecordInterface
|
|
{
|
|
public function parse(string $string);
|
|
|
|
public function getPath(): string;
|
|
|
|
public function isDeleted(): bool;
|
|
|
|
public function isNewOrModified(): bool;
|
|
|
|
public function isDirectory(): bool;
|
|
|
|
public function isFile(): bool;
|
|
}
|