Example #1
0
 /**
  * Create new table object
  * @param array $chunks
  * @return Table
  */
 public static function create($chunks = null)
 {
     $table = new self();
     if ($chunks) {
         $table->loadChunks($chunks, false);
     }
     return $table;
 }