Skip to content

Commit

Permalink
Remove annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored and jordisala1991 committed Mar 8, 2023
1 parent 716af29 commit 03730ae
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 35 deletions.
9 changes: 0 additions & 9 deletions tests/App/Entity/Category.php
Expand Up @@ -17,19 +17,10 @@
use Doctrine\ORM\Mapping as ORM;
use Sonata\ClassificationBundle\Entity\BaseCategory;

/**
* @ORM\Entity
* @ORM\Table(name="classification__category")
*/
#[ORM\Entity]
#[ORM\Table(name: 'classification__category')]
class Category extends BaseCategory
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
#[ORM\Id]
#[ORM\Column(type: Types::INTEGER)]
#[ORM\GeneratedValue]
Expand Down
9 changes: 0 additions & 9 deletions tests/App/Entity/Collection.php
Expand Up @@ -17,19 +17,10 @@
use Doctrine\ORM\Mapping as ORM;
use Sonata\ClassificationBundle\Entity\BaseCollection;

/**
* @ORM\Entity
* @ORM\Table(name="classification__collection")
*/
#[ORM\Entity]
#[ORM\Table(name: 'classification__collection')]
class Collection extends BaseCollection
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
#[ORM\Id]
#[ORM\Column(type: Types::INTEGER)]
#[ORM\GeneratedValue]
Expand Down
8 changes: 0 additions & 8 deletions tests/App/Entity/Context.php
Expand Up @@ -17,18 +17,10 @@
use Doctrine\ORM\Mapping as ORM;
use Sonata\ClassificationBundle\Entity\BaseContext;

/**
* @ORM\Entity
* @ORM\Table(name="classification__context")
*/
#[ORM\Entity]
#[ORM\Table(name: 'classification__context')]
class Context extends BaseContext
{
/**
* @ORM\Id
* @ORM\Column(type="string")
*/
#[ORM\Id]
#[ORM\Column(type: Types::STRING)]
protected ?string $id = null;
Expand Down
9 changes: 0 additions & 9 deletions tests/App/Entity/Tag.php
Expand Up @@ -17,19 +17,10 @@
use Doctrine\ORM\Mapping as ORM;
use Sonata\ClassificationBundle\Entity\BaseTag;

/**
* @ORM\Entity
* @ORM\Table(name="classification__tag")
*/
#[ORM\Entity]
#[ORM\Table(name: 'classification__tag')]
class Tag extends BaseTag
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
#[ORM\Id]
#[ORM\Column(type: Types::INTEGER)]
#[ORM\GeneratedValue]
Expand Down

0 comments on commit 03730ae

Please sign in to comment.