Joywork/import/document/entity/RootDir.php

19 lines
218 B
PHP
Raw Permalink Normal View History

2026-05-22 20:21:54 +02:00
<?php
class RootDir extends Dir
{
private $id = 0;
private $name = '';
private $parent = 0;
public function __construct()
{
}
public function isRoot()
{
return true;
}
}