I've got this when incorporating this lib with my laravel project ```php use Geotools\Geotools; use Geotools\Coordinate\Coordinate; $geoTools = new Geotools(); $coordinate = new Coordinate([$lat, $long]); $geoTools->vertex()->setFrom($coordinate)->destination(1111, 2222); ```
I've got this when incorporating this lib with my laravel project