<?php
@ include_once('../DirContent.php');
/**
* Example DirContent class.
*
* @author Nikola Posa <hide@address.com>
*/
class SomeDir extends DirContent
{
/**
* Path to themes directory.
*
* @var string
*/
protected $path = '/path/to/someDir';
}
?>