diff options
Diffstat (limited to 'lib/filesystem/StandardFileInterface.php')
| -rw-r--r-- | lib/filesystem/StandardFileInterface.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/filesystem/StandardFileInterface.php b/lib/filesystem/StandardFileInterface.php new file mode 100644 index 0000000..a246550 --- /dev/null +++ b/lib/filesystem/StandardFileInterface.php @@ -0,0 +1,11 @@ +<?php +interface StandardFileInterface +{ + /** + * StandardFile constructor. + * @param $fileref + * @param null $file : (optional) Is set if fileref and file are both new and not connected with + * each other in the database. + */ + public function __construct($fileref, $file = null); +} |
