for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace donatj\MySqlSchema\Columns\Traits;
trait SignedTrait {
/**
* @var bool
*/
protected $signed = false;
* @return boolean
public function isSigned() {
return $this->signed;
}
* @param boolean $signed
public function setSigned( $signed ) {
$this->signed = $signed;