mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 22:17:26 +01:00
Optimized reciever attribut
This commit is contained in:
parent
15b17c28b7
commit
dd0ab989d8
@ -14,9 +14,9 @@ trait RecieverAttribut
|
||||
*/
|
||||
protected $reciever;
|
||||
|
||||
public function setReciever(RecieverInterface $recieverGroup): void
|
||||
public function setReciever(RecieverInterface $reciever): void
|
||||
{
|
||||
$this->reciever = $recieverGroup;
|
||||
$this->reciever = $reciever;
|
||||
}
|
||||
|
||||
public function getReciever(): RecieverInterface
|
||||
|
@ -9,7 +9,7 @@ use App\Entity\Meta\RecieverInterface;
|
||||
*/
|
||||
interface RecieverAttributInterface
|
||||
{
|
||||
public function setReciever(RecieverInterface $recieverGroup): void;
|
||||
public function setReciever(RecieverInterface $reciever): void;
|
||||
|
||||
public function getReciever(): RecieverInterface;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user