adding crud to manage marital statuses in admin area (CRUDController way, minimal study case)

This commit is contained in:
2021-02-05 18:13:46 +01:00
parent 1839d829bc
commit 5c9e88784f
8 changed files with 149 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Chill\PersonBundle\Controller;
use Chill\MainBundle\CRUD\Controller\CRUDController;
/**
* Class AdminMaritalStatusController
*
* @package Chill\PersonBundle\Controller
*/
class AdminMaritalStatusController extends CRUDController
{
// for minimal cases, nothing is required here !
}