Example #1
0
 /**
  * Create a new instance of the document class
  *
  * Create a new instance of the statically called document class.
  * Implementing this method should only be required when using PHP 5.2 and
  * lower, otherwise the class can be determined using LSB.
  *
  * Do not pass a parameter to this method, this is only used to maintain
  * the called class information for PHP 5.2 and lower.
  *
  * @param mixed $docType
  * @return phpillowDocument
  */
 public static function createNew($docType = null)
 {
     return parent::createNew($docType === null ? __CLASS__ : $docType);
 }