예제 #1
0
파일: Comic.php 프로젝트: rmill/cb-comic
 /**
  * Factory
  */
 public function factory()
 {
     // Get all of the information from the database
     $chapters = Chapter::findAll();
     return new self($chapters);
 }