for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Formatting;
use WebTheory\Saveyour\Contracts\Formatting\InputFormatterInterface;
class LazyInputFormatter implements InputFormatterInterface
{
public function formatInput($input)
return $input;
}