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