for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace As3\Modlr\DataTypes\Types;
/**
* The mixed data type converter.
* Actually doesn't convert anything, just passes the raw value.
*
* @author Jacob Bare <[email protected]>
*/
class MixedType implements TypeInterface
{
* {@inheritDoc}
public function convertToModlrValue($value)
return $value;
}