Optimized law draft

This commit is contained in:
Kevin Frantz
2018-09-13 16:37:33 +02:00
parent b9f483bf7f
commit 92886a14ce
9 changed files with 31 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
<?php
namespace Entity\Attribut;
namespace App\Entity\Attribut;
use App\Entity\RightInterface;

View File

@@ -1,5 +1,5 @@
<?php
namespace Entity\Attribut;
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\ArrayCollection;

View File

@@ -1,5 +1,5 @@
<?php
namespace Entity\Attribut;
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\ArrayCollection;

View File

@@ -13,7 +13,7 @@ trait TypeAttribut {
*/
protected $type;
public function setType(string $right):void{
public function setType(string $type):void{
$this->type = $type;
}

View File

@@ -8,7 +8,7 @@ namespace App\Entity\Attribut;
*/
interface TypeAttributInterface
{
public function setType(string $right):void;
public function setType(string $type):void;
public function getType():string;
}