1
0
mirror of synced 2025-02-03 05:49:25 +03:00
2016-10-26 13:24:33 -03:00

25 lines
337 B
PHP

<?php
namespace Doctrine\Tests\Models\DirectoryTree;
/**
* @Entity
*/
class Directory extends AbstractContentItem
{
/**
* @Column(type="string")
*/
protected $path;
public function setPath($path)
{
$this->path = $path;
}
public function getPath()
{
return $this->path;
}
}