mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 13:54:59 +00:00
improve doc storing
This commit is contained in:
@@ -37,15 +37,16 @@ class DocumentCategory
|
||||
* @ORM\Column(type="json_array")
|
||||
*/
|
||||
private $name;
|
||||
|
||||
public function getBundleId() // ::class BundleClass (FQDN)
|
||||
{
|
||||
return $this->bundleId;
|
||||
}
|
||||
|
||||
public function setBundleId($bundleId)
|
||||
|
||||
public function __construct($bundleId, $idInsideBundle)
|
||||
{
|
||||
$this->bundleId = $bundleId;
|
||||
$this->idInsideBundle = $idInsideBundle;
|
||||
}
|
||||
|
||||
public function getBundleId() // ::class BundleClass (FQDN)
|
||||
{
|
||||
return $this->bundleId;
|
||||
}
|
||||
|
||||
public function getIdInsideBundle()
|
||||
@@ -53,13 +54,6 @@ class DocumentCategory
|
||||
return $this->idInsideBundle;
|
||||
}
|
||||
|
||||
public function setIdInsideBundle($idInsideBundle): self
|
||||
{
|
||||
$this->idInsideBundle = $idInsideBundle;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getDocumentClass()
|
||||
{
|
||||
return $this->documentClass;
|
||||
|
Reference in New Issue
Block a user