creof/doctrine2-spatial

View on GitHub
lib/CrEOF/Spatial/ORM/Query/AST/Functions/PostgreSql/STBuffer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CrEOF\Spatial\ORM\Query\AST\Functions\PostgreSql;

use CrEOF\Spatial\ORM\Query\AST\Functions\AbstractSpatialDQLFunction;

/**
 * ST_Buffer DQL function
 */
class STBuffer extends AbstractSpatialDQLFunction
{
    protected $platforms = array('postgresql');

    protected $functionName = 'ST_Buffer';

    protected $minGeomExpr = 2;

    protected $maxGeomExpr = 3;
}