예제 #1
0
파일: Copy.php 프로젝트: Yomyer/cckit
 /**
  * @param mixed $content
  * @param bool $lead
  * @return $this
  */
 public static function create($content = null, $lead = false)
 {
     return parent::traitCreate($content, $lead);
 }
예제 #2
0
파일: Heading.php 프로젝트: Yomyer/cckit
 /**
  * @param Rendered|string $content
  * @return $this
  */
 public function prependSmall($content)
 {
     parent::prepend(Small::create($content));
     return $this;
 }