Skip to content

Commit

Permalink
Add CHANGELOG and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
craig-davis committed May 27, 2015
1 parent 97c2ef2 commit 4ebbac4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 0.0.1 - 2015-05-27
### Added
- Initial skeleton application with basic functionality in place
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Help Scout Command Line Tools [![Build Status](https://travis-ci.org/helpscout/helpscout-cli-php.svg)](https://travis-ci.org/helpscout/helpscout-cli-php) [![Code Climate](https://codeclimate.com/repos/555a0ee76956806a8300328e/badges/5256fafc5283b70fc667/gpa.svg)](https://codeclimate.com/repos/555a0ee76956806a8300328e/feed)
================================================================================
> Command line interface for Help Scout
> Command line interface for Help Scout :: API example application
A simple command line client application that can be used with Help Scout. This
is built using the [Symfony Console][symfony] and the [PHP API Client][phpapi].

This is an example project,used to demonstrate the Help Scout API. It's much
This is an example project used to demonstrate the Help Scout API. It's much
more common to use the API to build:

* Custom Integrations with your other tools
Expand All @@ -19,7 +19,7 @@ the command line too!
## Quick Start

Run the `bin/helpscout` file from the command line. It will prompt you for your
API key. It will store an API token in a ~/.helpscout.yml file.
API key. It will store an API token in a `~/.helpscout.yml` file.

## Help
```
Expand Down
2 changes: 0 additions & 2 deletions src/Console/Command/MailboxCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
'folders' => $folders,
];

print_r($mailboxData);

$template = $this->app->twig->loadTemplate('mailbox.twig');
$view = $template->render($mailboxData);
$output->write($view, false, $this->app->outputFormat);
Expand Down

0 comments on commit 4ebbac4

Please sign in to comment.