diff --git a/src/Events/StateEntityCreatedEvent.php b/src/Events/StateEntityCreatedEvent.php index ebd74f4c..d8f4730a 100644 --- a/src/Events/StateEntityCreatedEvent.php +++ b/src/Events/StateEntityCreatedEvent.php @@ -36,7 +36,7 @@ class StateEntityCreatedEvent extends EventDispatcher\Event * @param States\IChannelProperty|States\IDeviceProperty|States\IConnectorProperty $state */ public function __construct( - $state + $state ) { $this->state = $state; } diff --git a/src/Events/StateEntityDeletedEvent.php b/src/Events/StateEntityDeletedEvent.php index e1276119..7fe04341 100644 --- a/src/Events/StateEntityDeletedEvent.php +++ b/src/Events/StateEntityDeletedEvent.php @@ -33,7 +33,7 @@ class StateEntityDeletedEvent extends EventDispatcher\Event private Uuid\UuidInterface $id; public function __construct( - Uuid\UuidInterface $id + Uuid\UuidInterface $id ) { $this->id = $id; } diff --git a/src/Subscribers/StatesSubscriber.php b/src/Subscribers/StatesSubscriber.php index 48cdb206..d08316fe 100644 --- a/src/Subscribers/StatesSubscriber.php +++ b/src/Subscribers/StatesSubscriber.php @@ -267,4 +267,5 @@ private function findProperty(Uuid\UuidInterface $id, $state) return null; } } + }