Sonata Page Bundle 4 (#1440)

* Sonata Page Bundle 4

* Added post install
This commit is contained in:
Erison Silva
2022-12-15 08:11:31 +01:00
committed by GitHub
parent 01511fac73
commit d870191df3
8 changed files with 201 additions and 0 deletions
@@ -0,0 +1,24 @@
<?php
declare(strict_types=1);
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Sonata\PageBundle\Entity\BaseBlock;
/**
* @ORM\Entity
* @ORM\Table(name="page__block")
*/
class SonataPageBlock extends BaseBlock
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*
* @var int
*/
protected $id;
}