|
@@ -65,6 +65,15 @@ class Profile implements TenancyIdTraitInterface
|
|
protected $template;
|
|
protected $template;
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Constructor
|
|
|
|
+ */
|
|
|
|
+ public function __construct()
|
|
|
|
+ {
|
|
|
|
+ $this->onus = new \Doctrine\Common\Collections\ArrayCollection();
|
|
|
|
+ $this->template = 'template_radius.tpl';
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @return string
|
|
* @return string
|
|
*/
|
|
*/
|
|
@@ -177,14 +186,6 @@ class Profile implements TenancyIdTraitInterface
|
|
return preg_replace("|[^A-Za-z0-9]|", "-", $this->name);
|
|
return preg_replace("|[^A-Za-z0-9]|", "-", $this->name);
|
|
}
|
|
}
|
|
|
|
|
|
- /**
|
|
|
|
- * Constructor
|
|
|
|
- */
|
|
|
|
- public function __construct()
|
|
|
|
- {
|
|
|
|
- $this->onus = new \Doctrine\Common\Collections\ArrayCollection();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Add onus
|
|
* Add onus
|
|
*
|
|
*
|