for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rexlabs\Laravel\Smokescreen\Helpers;
trait TransformHelper
{
public function when($condition, $whenTrue, $whenFalse = null)
return $condition ? $whenTrue : $whenFalse;
}