for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kwkm\MkLiveStatusClient;
/**
* Class Column
*
* @package Kwkm\MkLiveStatusClient
* @author Takehiro Kawakami <[email protected]>
* @license MIT
*/
class Column
{
private $columns;
public function __construct($columns = array())
$this->columns = $columns;
}
public function add($column)
$this->columns[] = $column;
return $this;
public function delete($column)
$index = array_search($column, $this->columns);
if ($index !== null) {
unset($this->columns[$index]);
public function get()
return $this->columns;