2010-09-21 23:53:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DirectoryTree;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
*/
|
|
|
|
class Directory extends AbstractContentItem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Column(type="string")
|
|
|
|
*/
|
|
|
|
protected $path;
|
2010-09-22 00:15:45 +02:00
|
|
|
|
|
|
|
public function setPath($path)
|
|
|
|
{
|
|
|
|
$this->path = $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPath()
|
|
|
|
{
|
|
|
|
return $this->path;
|
|
|
|
}
|
2010-09-21 23:53:26 +02:00
|
|
|
}
|