Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/Fake/FakeCustomersApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
4 changes: 1 addition & 3 deletions src/Fake/FakePropertiesApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
4 changes: 1 addition & 3 deletions src/Properties/PropertiesApiImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Loading