mirror of
https://github.com/koel/koel
synced 2024-11-10 22:54:16 +00:00
18 lines
289 B
PHP
18 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();
|
|
}
|