ezcWebdavCollection|ezcWebdavResource) */ public $childs; /** * Live properties of ressource. * * @var ezcWebdavPropertyStorage */ public $liveProperties; /** * Creates a new collection struct. * * A new collection struct is created, representing the collection * referenced by $path, with the given $liveProperties and $childs * elements. * * @param string $path * @param ezcWebdavPropertyStorage $liveProperties * @param array $childs * @return void */ public function __construct( $path, ezcWebdavPropertyStorage $liveProperties = null, array $childs = array() ) { $this->path = $path; $this->liveProperties = $liveProperties; $this->childs = $childs; } } ?>