for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
* @license MIT
*/
/** Location.php */
namespace Jobs\Entity;
use Core\Entity\AbstractLocation;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use GeoJson\GeoJson;
* Location of a job position
* @ODM\EmbeddedDocument
* @ODM\Index(keys={"coordinates"="2dsphere"})
class Location extends AbstractLocation
{
}