for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\ODM\CouchDB\Types;
class IntegerType extends Type
{
public function convertToCouchDBValue($value)
return (int)$value;
}
public function convertToPHPValue($value)