for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\PgSQL\Result;
trait ResultAwareTrait
{
protected $ret;
public function getResult()
return $this->ret;
}
public function setResult($ret)
$this->$ret = $ret;
return $this;
public function getStatus()
return \pg_result_status($this->ret);