for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Data;
class DataSet implements \ArrayAccess
{
public function offsetSet($offset, $value)
return;
}
public function offsetExists($offset)
return $this->tableExists($offset);
public function offsetUnset($offset)
public function offsetGet($offset)
return $this->getTable($offset);
public function tableExists($name)
throw new \Exception('Unimplemented');
public function getTable($name)
public function raw_query($query)
$query
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.