for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ytake\PrestoClient;
/**
* Class FixData
*/
final class FixData implements \ArrayAccess
{
* @param string $column
* @param $value
public function add(string $column, $value)
$this->$column = $value;
}
* @param mixed $offset
*
* @return bool
public function offsetExists($offset)
return isset($this->$offset);
* @param string $offset
* @return mixed|null
public function offsetGet($offset)
return $this->$offset ?? null;
* @param mixed $value
public function offsetSet($offset, $value)
$this->$offset = $value;
public function offsetUnset($offset)
unset($this->$offset);