for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* GEOSWKTWriter class stub.
*
* These stubs are required for IDEs to provide autocompletion and static code analysis during development.
* They are not required for production.
* @see https://github.com/libgeos/libgeos/blob/svn-trunk/php/geos.c
*/
class GEOSWKTWriter
{
* Constructor.
public function __construct() {}
* @param GEOSGeometry $geom
* @return string
* @throws \Exception
public function write(GEOSGeometry $geom) {}
* @param bool $trim
* @return void
public function setTrim($trim) {}
* @param int $prec
public function setRoundingPrecision($prec) {}
* @param int $dim
public function setOutputDimension($dim) {}
* @return int
public function getOutputDimension() {}
* @param bool $val
public function setOld3D($val) {}
}