1 | <?php |
||
7 | class elFinderVolumeTrash extends elFinderVolumeLocalFileSystem |
||
|
|||
8 | { |
||
9 | /** |
||
10 | * Driver id |
||
11 | * Must be started from letter and contains [a-z0-9] |
||
12 | * Used as part of volume id. |
||
13 | * |
||
14 | * @var string |
||
15 | **/ |
||
16 | protected $driverId = 't'; |
||
17 | |||
18 | public function __construct() |
||
32 | |||
33 | public function mount(array $opts) |
||
50 | } |
||
51 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.