mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized reciever attribut
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user