mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-09 16:24:59 +00:00
apply more cs rules for php-cs
This commit is contained in:
@@ -17,6 +17,7 @@ use Doctrine\ORM\Mapping as ORM;
|
||||
* CustomFieldsDefaultGroup.
|
||||
*
|
||||
* @ORM\Entity
|
||||
*
|
||||
* @ORM\Table(
|
||||
* name="customfieldsdefaultgroup",
|
||||
* uniqueConstraints={@ORM\UniqueConstraint(
|
||||
@@ -27,8 +28,6 @@ use Doctrine\ORM\Mapping as ORM;
|
||||
class CustomFieldsDefaultGroup
|
||||
{
|
||||
/**
|
||||
* @var CustomFieldsGroup
|
||||
*
|
||||
* @ORM\ManyToOne(
|
||||
* targetEntity="Chill\CustomFieldsBundle\Entity\CustomFieldsGroup")
|
||||
*
|
||||
@@ -37,17 +36,15 @@ class CustomFieldsDefaultGroup
|
||||
private ?\Chill\CustomFieldsBundle\Entity\CustomFieldsGroup $customFieldsGroup = null;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(type="string", length=255)
|
||||
*/
|
||||
private ?string $entity = null;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*
|
||||
* @ORM\Id
|
||||
*
|
||||
* @ORM\Column(name="id", type="integer")
|
||||
*
|
||||
* @ORM\GeneratedValue(strategy="AUTO")
|
||||
*/
|
||||
private ?int $id = null;
|
||||
@@ -85,7 +82,7 @@ class CustomFieldsDefaultGroup
|
||||
/**
|
||||
* Set customFieldsGroup.
|
||||
*
|
||||
* @param CustomFieldsGroup $customFieldsGroup *
|
||||
* @param CustomFieldsGroup $customFieldsGroup *
|
||||
*
|
||||
* @return CustomFieldsDefaultGroup
|
||||
*/
|
||||
|
Reference in New Issue
Block a user