mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +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();
|
|
}
|