Skip to content

Commit

Permalink
changed type hinting from the constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
onairmarc committed Dec 18, 2023
1 parent e7efd55 commit ef8c692
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Traits/HasPlanningCenterClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

trait HasPlanningCenterClient
{
private ClientConfiguration $config;
private PlanningCenterClient $client;
public function __construct(PlanningCenterClient $client){
protected mixed $config;
protected mixed $client;
public function __construct(mixed $client){
$this->config = $client->getConfiguration();
$this->client = $client;
}
Expand Down

0 comments on commit ef8c692

Please sign in to comment.