Skip to content

Commit

Permalink
Indents OrganizationResponse correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonius committed Nov 25, 2017
1 parent a955549 commit 0dcdb89
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Acquia PHP SDK for CloudAPI v2
=

[![Build Status](https://travis-ci.org/typhonius/acquia-php-sdk-v2.svg?branch=master)](https://travis-ci.org/typhonius/acquia-php-sdk-v2)
[![Total Downloads](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/downloads.png)](https://packagist.org/packages/typhonius/acquia-php-sdk-v2)
[![Total Downloads](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/downloads.png)](https://packagist.org/packages/typhonius/acquia-php-sdk-v2)
[![Coverage Status](https://coveralls.io/repos/github/typhonius/acquia-php-sdk-v2/badge.svg?branch=master)](https://coveralls.io/github/typhonius/acquia-php-sdk-v2?branch=master)
[![License](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/license.png)](https://www.versioneye.com/user/projects/5a18bd670fb24f2125873c86#tab-dependencies)

[![Latest Stable Version](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/v/stable.png)](https://packagist.org/packages/typhonius/acquia-php-sdk-v2)
[![Latest Unstable Version](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/v/unstable.png)](https://packagist.org/packages/typhonius/acquia-php-sdk-v2)
[![Latest Unstable Version](https://poser.pugx.org/typhonius/acquia-php-sdk-v2/v/unstable.png)](https://packagist.org/packages/typhonius/acquia-php-sdk-v2)

With the [original Acquia Cloud SDK](https://github.com/acquia/acquia-sdk-php) being deprecated and a [new version of Cloud API](https://cloud.acquia.com/api-docs/) being made available, this SDK aims to fill the gap and use more modern PHP packages to allow developers to continue to build tools that interact with the Acquia Cloud API.

Expand All @@ -20,7 +20,7 @@ library as a dependency to your composer.json file.
```json
{
"require": {
"typhonius/acquia-php-sdk-v2": "*"
"typhonius/acquia-php-sdk-v2": "^1.0.0"
}
}
```
Expand Down Expand Up @@ -68,4 +68,4 @@ $servers = $cloudapi->servers($environment->uuid);

## I just want to use this not develop against it

A Robo application has been created that uses this SDK and creates a command line tool for interacting with the API. [The application may be found here](https://github.com/typhonius/acquia_cli) using the acquia-api-v2 branch.
A Robo application has been created that uses this SDK and creates a command line tool for interacting with the API. [The application may be found here](https://github.com/typhonius/acquia_cli) using the acquia-api-v2 branch.
6 changes: 3 additions & 3 deletions src/Response/OrganizationsResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class OrganizationsResponse extends \ArrayObject
{

/**
* OrganizationsResponse constructor.
* @param array $organizations
*/
* OrganizationsResponse constructor.
* @param array $organizations
*/
public function __construct($organizations)
{
parent::__construct(array_map(function ($organization) {
Expand Down

0 comments on commit 0dcdb89

Please sign in to comment.