示例#1
0
 public function columns($cb)
 {
     Column::reset();
     call_user_func($cb);
     $this->column = Column::get();
     return $this;
 }
示例#2
0
 /**
  * 取得カラムの指定
  *
  * @param Column $column
  * @return \Kwkm\MkLiveStatusClient\Lql
  * @throw \InvalidArgumentException if the provided argument is not of type 'string'.
  */
 public function column(Column $column)
 {
     $this->lqlObject->setColumns($column->get());
     return $this;
 }