Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
Fix ordering of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
hbraune committed Apr 17, 2016
1 parent ef16f5d commit 026f9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Client extends BaseClient {
public function __construct(ContainerInterface $container) {
$this->container = $container;
$config = $this->container->getParameter('braune_digital_pitcher');
parent::__construct($config['satellite_name'], $config['pitcher_url'], $config['secret'], $config['api_version']);
parent::__construct($config['satellite_name'], $config['secret'], $config['api_version'], $config['pitcher_url']);
}

/**
Expand Down

0 comments on commit 026f9d2

Please sign in to comment.