예제 #1
0
파일: PageTitle.php 프로젝트: rexmac/zyndax
 /**
  * Constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
 }
예제 #2
0
파일: HeadScript.php 프로젝트: robeendey/ce
 /**
  * Constructor
  *
  * Set separator to PHP_EOL.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->setSeparator(PHP_EOL);
 }
예제 #3
0
 /**
  * Constructor
  *
  * Set separator to PHP_EOL
  */
 public function __construct()
 {
     parent::__construct();
     /** @see Zend_View_Helper_Placeholder_Container_Abstract::setSeparator() */
     $this->setSeparator(PHP_EOL);
 }