ezcWebdavCollection|ezcWebdavResource) * * @apichange This property will be renamed to $children in the next major * release. */ public $childs; /** * Live properties of resource. * * @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 $children * ($childs) elements. * * @param string $path * @param ezcWebdavPropertyStorage $liveProperties * @param array $children * @return void */ public function __construct( $path, ezcWebdavPropertyStorage $liveProperties = null, array $children = array() ) { $this->path = $path; $this->liveProperties = $liveProperties; $this->childs = $children; } } ?>