예제 #1
0
파일: Path.php 프로젝트: appcia/webwork
 /**
  * Set path template
  *
  * @param string $content Path template
  *
  * @return $this
  */
 public function setContent($content)
 {
     if ($content !== '/') {
         $content = rtrim($content, '/');
     }
     parent::setContent($content);
     return $this;
 }