Skip to content

Commit

Permalink
QA fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Jun 25, 2022
1 parent 2ec24ba commit d902503
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Events/StateEntityCreatedEvent.php
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Events/StateEntityDeletedEvent.php
Expand Up @@ -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;
}
Expand Down
1 change: 1 addition & 0 deletions src/Subscribers/StatesSubscriber.php
Expand Up @@ -267,4 +267,5 @@ private function findProperty(Uuid\UuidInterface $id, $state)
return null;
}
}

}

0 comments on commit d902503

Please sign in to comment.