for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 27.08.2015 08:44
*
* @author Karsten J. Gerber <[email protected]>
*/
namespace PeekAndPoke\Component\Psi\Functions\Unary\Mapper;
use PeekAndPoke\Component\Psi\Interfaces\Functions\UnaryFunctionInterface;
* IdentityMap
class IdentityMapper implements UnaryFunctionInterface
{
* @param mixed $input
* @return mixed
public function __invoke($input)
return $input;
}