@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($teams) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($team) { |
|
18 | + parent::__construct(array_map(function($team) { |
|
19 | 19 | return new TeamResponse($team); |
20 | 20 | }, $teams), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($permissions) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($permission) { |
|
18 | + parent::__construct(array_map(function($permission) { |
|
19 | 19 | return new PermissionResponse($permission); |
20 | 20 | }, $permissions), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($environments) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($environment) { |
|
18 | + parent::__construct(array_map(function($environment) { |
|
19 | 19 | return new EnvironmentResponse($environment); |
20 | 20 | }, $environments), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($invitations) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($invitation) { |
|
18 | + parent::__construct(array_map(function($invitation) { |
|
19 | 19 | return new InvitationResponse($invitation); |
20 | 20 | }, $invitations), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($roles) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($role) { |
|
18 | + parent::__construct(array_map(function($role) { |
|
19 | 19 | return new RoleResponse($role); |
20 | 20 | }, $roles), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function __construct($organizations) |
17 | 17 | { |
18 | - parent::__construct(array_map(function ($organization) { |
|
18 | + parent::__construct(array_map(function($organization) { |
|
19 | 19 | return new OrganizationResponse($organization); |
20 | 20 | }, $organizations), self::ARRAY_AS_PROPS); |
21 | 21 | } |
@@ -63,13 +63,13 @@ |
||
63 | 63 | |
64 | 64 | public function createRequest($verb, $path) |
65 | 65 | { |
66 | - if (! isset($this->accessToken)) { |
|
66 | + if (!isset($this->accessToken)) { |
|
67 | 67 | $this->accessToken = $this->provider->getAccessToken('client_credentials'); |
68 | 68 | } |
69 | 69 | |
70 | 70 | return $this->provider->getAuthenticatedRequest( |
71 | 71 | $verb, |
72 | - self::BASE_URI . $path, |
|
72 | + self::BASE_URI.$path, |
|
73 | 73 | $this->accessToken |
74 | 74 | ); |
75 | 75 | } |
@@ -72,12 +72,12 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
75 | - * Backup a database. |
|
76 | - * |
|
77 | - * @param string $environmentUuid |
|
78 | - * @param string $dbName |
|
79 | - * @return OperationResponse |
|
80 | - */ |
|
75 | + * Backup a database. |
|
76 | + * |
|
77 | + * @param string $environmentUuid |
|
78 | + * @param string $dbName |
|
79 | + * @return OperationResponse |
|
80 | + */ |
|
81 | 81 | public function createDatabaseBackup($environmentUuid, $dbName) |
82 | 82 | { |
83 | 83 | return new OperationResponse( |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | { |
333 | 333 | |
334 | 334 | $options = [ |
335 | - 'form_params' => $config, |
|
335 | + 'form_params' => $config, |
|
336 | 336 | ]; |
337 | 337 | |
338 | 338 | return new OperationResponse( |
@@ -110,7 +110,7 @@ |
||
110 | 110 | if (is_array($object->message)) { |
111 | 111 | $output = ''; |
112 | 112 | foreach ($object->message as $message) { |
113 | - $output .= $message . PHP_EOL; |
|
113 | + $output .= $message.PHP_EOL; |
|
114 | 114 | } |
115 | 115 | throw new \Exception($output); |
116 | 116 | } else { |