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