Skip to content

Instantly share code, notes, and snippets.

@AhmedSamy
Created May 28, 2015 14:24
Show Gist options
  • Save AhmedSamy/452fc02fe39e6bb37a71 to your computer and use it in GitHub Desktop.
Save AhmedSamy/452fc02fe39e6bb37a71 to your computer and use it in GitHub Desktop.
<?php
namespace OverrideBundle;
use Doctrine\ODM\MongoDB\Types\Type;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class OverrideBundle extends Bundle
{
public function __construct()
{
// Registering custom types
Type::registerType('coordinates', 'OverrideBundle\Doctrine\Mongo\Type\CoordinatesType');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment