for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mdiyakov\DoctrineSolrBundle\Schema\Field\Entity;
class IntField extends NumericField
{
/**
* @param $value
* @return int
*/
public function castValue($value)
return intval($value);
}