for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mcustiel\PowerRoute\Common;
trait ArgumentAware
{
/**
* @var mixed
*/
private $argument = null;
* @param mixed $argument
public function setArgument($argument)
$this->argument = $argument;
}