From 7ea8eb4ab73db69bd4df77d705c3e9e9f433ff34 Mon Sep 17 00:00:00 2001 From: tcmbilozub <35073636+tcmbilozub@users.noreply.github.com> Date: Sat, 11 Apr 2026 17:39:30 +0000 Subject: [PATCH] chore: Sync changes from the template --- src/Fake/FakeCustomersApi.php | 4 +--- src/Fake/FakePropertiesApi.php | 4 +--- src/Properties/PropertiesApiImpl.php | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/Fake/FakeCustomersApi.php b/src/Fake/FakeCustomersApi.php index e278ef1..14b54e8 100644 --- a/src/Fake/FakeCustomersApi.php +++ b/src/Fake/FakeCustomersApi.php @@ -14,9 +14,7 @@ class FakeCustomersApi implements CustomersApi { - public function __construct( - private readonly Repository $cache - ) {} + public function __construct(private readonly Repository $cache) {} public function create(CustomerCreateDTO $customerDTO): CustomerCreatedDTO { diff --git a/src/Fake/FakePropertiesApi.php b/src/Fake/FakePropertiesApi.php index 507dfc1..8ba60a4 100644 --- a/src/Fake/FakePropertiesApi.php +++ b/src/Fake/FakePropertiesApi.php @@ -10,9 +10,7 @@ class FakePropertiesApi implements PropertiesApi { - public function __construct( - private readonly Repository $cache - ) {} + public function __construct(private readonly Repository $cache) {} public function create(string $userApiKey, PropertyDTO $propertyDTO): int { diff --git a/src/Properties/PropertiesApiImpl.php b/src/Properties/PropertiesApiImpl.php index a69d630..622fe76 100644 --- a/src/Properties/PropertiesApiImpl.php +++ b/src/Properties/PropertiesApiImpl.php @@ -20,9 +20,7 @@ class PropertiesApiImpl implements PropertiesApi private const ACTIVATE_PROPERTY_API = '/v1/properties/%s/activate'; private const DEACTIVATE_PROPERTY_API = '/v1/properties/%s/deactivate'; - public function __construct( - private readonly Client $httpClient, - ) {} + public function __construct(private readonly Client $httpClient) {} public function create(string $userApiKey, PropertyDTO $propertyDTO): int {