aboutsummaryrefslogtreecommitdiff
path: root/lib/filesystem/StandardFileInterface.php
blob: a246550538c8d8e34d77972b1332a659b9782738 (plain)
1
2
3
4
5
6
7
8
9
10
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);
}