Optimized reciever attribut

This commit is contained in:
Kevin Frantz 2018-11-04 23:59:58 +01:00
parent 15b17c28b7
commit dd0ab989d8
2 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ trait RecieverAttribut
*/ */
protected $reciever; protected $reciever;
public function setReciever(RecieverInterface $recieverGroup): void public function setReciever(RecieverInterface $reciever): void
{ {
$this->reciever = $recieverGroup; $this->reciever = $reciever;
} }
public function getReciever(): RecieverInterface public function getReciever(): RecieverInterface

View File

@ -9,7 +9,7 @@ use App\Entity\Meta\RecieverInterface;
*/ */
interface RecieverAttributInterface interface RecieverAttributInterface
{ {
public function setReciever(RecieverInterface $recieverGroup): void; public function setReciever(RecieverInterface $reciever): void;
public function getReciever(): RecieverInterface; public function getReciever(): RecieverInterface;
} }