mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-14 06:07:18 +02:00
Optimized law draft
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace Entity\Attribut;
|
||||
namespace App\Entity\Attribut;
|
||||
|
||||
use App\Entity\RightInterface;
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace Entity\Attribut;
|
||||
namespace App\Entity\Attribut;
|
||||
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace Entity\Attribut;
|
||||
namespace App\Entity\Attribut;
|
||||
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
|
@@ -13,7 +13,7 @@ trait TypeAttribut {
|
||||
*/
|
||||
protected $type;
|
||||
|
||||
public function setType(string $right):void{
|
||||
public function setType(string $type):void{
|
||||
$this->type = $type;
|
||||
}
|
||||
|
||||
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user