for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AsyncPHP\Icicle\Database\Builder\Method;
/**
* @property string $table
*/
trait TableMethod
{
* @param string $table
*
* @return static
public function table($table)
return $this->cloneWith("table", $table);
}
* @param string $key
* @param mixed $value
abstract protected function cloneWith($key, $value);