Skip to content

Commit 350375c

Browse files
committed
Fix constructor call
1 parent 4ce7c8f commit 350375c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/php/src/Services/Service.php.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class {{ service.name | caseUcfirst }} extends Service
2727
{
2828
public function __construct(Client $client)
2929
{
30-
$this->client = $client;
30+
parent::__construct($client);
3131
}
3232
3333
{% for method in service.methods %}

0 commit comments

Comments
 (0)