Skip to content

Commit

Permalink
Merge branch '3.4' into 4.4
Browse files Browse the repository at this point in the history
* 3.4:
  [DoctrineBridge] Use new Types::* constants and support new json type
  • Loading branch information
nicolas-grekas committed Feb 24, 2020
2 parents a67abe1 + 9819814 commit 2d53ff6
Showing 1 changed file with 30 additions and 0 deletions.
@@ -0,0 +1,30 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Bridge\Doctrine\Tests\PropertyInfo\Fixtures;

use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\ManyToMany;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;

/**
* @Entity
*/
final class DoctrineDummy210 extends DoctrineDummy
{
/**
* @Column(type="json", nullable=true)
*/
private $json;
}

0 comments on commit 2d53ff6

Please sign in to comment.