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