for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* GpsLab component.
*
* @author Peter Gribanov <[email protected]>
* @copyright Copyright (c) 2016, Peter Gribanov
* @license http://opensource.org/licenses/MIT
*/
namespace GpsLab\Component\Interval\Persistence\Doctrine\DBAL\Types;
use GpsLab\Component\Interval\IPv4\IPv4Interval;
class IPv4IntervalType extends BaseType
{
* @return string
protected function getIntervalClass()
return IPv4Interval::class;
}