Exemplo n.º 1
0
 /**
  * Chunk the results of the query.
  *
  * @param int $count
  * @param callable $callback
  * @return void 
  * @static 
  */
 public static function chunk($count, $callback)
 {
     //Method inherited from \Illuminate\Database\Eloquent\Builder
     \October\Rain\Database\Builder::chunk($count, $callback);
 }