Parkour\Functor\Identity::__invoke PHP Method

__invoke() public method

Returns its first parameter.
public __invoke ( mixed $value ) : mixed
$value mixed Value.
return mixed $value Value.
    public function __invoke($value)
    {
        return $value;
    }
Identity