for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Nimo\Tests;
trait RememberConstructorParamTrait
{
protected $params;
public function __construct()
$this->params = func_get_args();
}