Skip to content

Commit

Permalink
Merge branch 'master' into 1544-windows-istty
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronan Dowling committed Jan 24, 2017
2 parents ad0efd0 + db09950 commit 40e19b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -32,7 +32,7 @@ You can install Terminus just about anywhere on your system. In this README, we'
### Installing via the Terminus installer
Run this in your Terminal client:
```bash
curl -O https://raw.githubusercontent.com/pantheon-systems/terminus-installer/master/builds/installer.phar && php installer.phar
curl -O https://raw.githubusercontent.com/pantheon-systems/terminus-installer/master/builds/installer.phar && php installer.phar install
```
For more information on installation options, please see the [Terminus Installer README.md file](https://github.com/pantheon-systems/terminus-installer).

Expand Down
2 changes: 1 addition & 1 deletion src/Collections/SavedTokens.php
Expand Up @@ -99,7 +99,7 @@ protected function getCollectionData($options = [])
{
$tokens = [];
foreach ($this->getDataStore()->keys() as $key) {
$tokens[] = $this->getDataStore()->get($key);
$tokens[] = (object)$this->getDataStore()->get($key);
}
return $tokens;
}
Expand Down
2 changes: 1 addition & 1 deletion src/DataStore/FileStore.php
Expand Up @@ -34,7 +34,7 @@ public function get($key)
$path = $this->getFileName($key);
if (file_exists($path)) {
$out = file_get_contents($path);
$out = json_decode($out);
$out = json_decode($out, true);
}
return $out;
}
Expand Down

0 comments on commit 40e19b4

Please sign in to comment.