for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\CLImate\Util;
trait UtilImporter
{
/**
* An instance of the UtilFactory
*
* @var \League\CLImate\Util\UtilFactory $util
*/
protected $util;
* Sets the $util property
* @param UtilFactory $util
public function util(UtilFactory $util)
$this->util = $util;
}