Skip to content

Commit

Permalink
Rename $config to $serviceConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
r-kujawa committed Jun 24, 2024
1 parent 36f56e9 commit fa19661
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/DataTransferObjects/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ class Provider implements Providable
*
* @var \Payavel\Orchestration\Fluent\ServiceConfig
*/
public ServiceConfig $config;
public ServiceConfig $serviceConfig;

public function __construct(ServiceConfig $config, array $data)
public function __construct(ServiceConfig $serviceConfig, array $data)
{
$this->config = $config;
$this->serviceConfig = $serviceConfig;

$this->attributes = $data;
}
Expand Down Expand Up @@ -51,6 +51,6 @@ public function getName()
*/
public function getServiceConfig()
{
return $this->config;
return $this->serviceConfig;
}
}

0 comments on commit fa19661

Please sign in to comment.