for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lagdo\DbAdmin\Driver;
trait ConfigTrait
{
/**
* Get the server jush
*
* @return string
*/
public function jush()
return $this->config->jush;
}
* @return array
public function unsigned()
return $this->config->unsigned;
public function functions()
return $this->config->functions;
public function grouping()
return $this->config->grouping;
public function operators()
return $this->config->operators;
public function editFunctions()
return $this->config->editFunctions;
public function types()
return $this->config->types;
* @param string $type
* @return bool
public function typeExists(string $type)
return isset($this->config->types[$type]);
* @return mixed
public function type(string $type)
return $this->config->types[$type];
public function structuredTypes()
return $this->config->structuredTypes;
* @param string $key
* @param mixed $value
* @return void
public function setStructuredType(string $key, $value)
$this->config->structuredTypes[$key] = $value;