diff --git a/src/Shared/Infrastructure/Bus/Query/QueryNotRegisteredError.php b/src/Shared/Infrastructure/Bus/Query/QueryNotRegisteredError.php index 9f0d6458..ea592627 100644 --- a/src/Shared/Infrastructure/Bus/Query/QueryNotRegisteredError.php +++ b/src/Shared/Infrastructure/Bus/Query/QueryNotRegisteredError.php @@ -13,6 +13,6 @@ public function __construct(Query $query) { $queryClass = $query::class; - parent::__construct("The query <$queryClass> hasn't a query handler associated"); + parent::__construct("The query <$queryClass> has no associated query handler"); } }