Ejemplo n.º 1
0
 /**
  * Sets the class path
  *
  * if $path is null the class path is the path of the file which created this
  * instance.
  *
  * @param String $path The class path
  *
  * @see _getCallersPath()
  * @throws AutoloaderException_GuessPathFailed
  * @throws AutoloaderException_ClassPath_NotExists
  * @throws AutoloaderException_ClassPath
  */
 public function __construct($path = null)
 {
     parent::__construct();
     $this->_setPath(is_null($path) ? self::_getCallersPath() : $path);
 }