for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NeedleProject\Transaction;
/**
* Class RollBackResultTrait
*
* @package NeedleProject\Transaction
* @author Adrian Tilita <[email protected]>
*/
trait RollBackResultTrait
{
* @var mixed
private $rollBackResult;
* @param mixed $rollBackResult
public function setRollBackResult($rollBackResult)
$this->rollBackResult = $rollBackResult;
}
* @return mixed
public function getRollBackResult()
return $this->rollBackResult;