From 4ebbac470f8897c9c9d96d83cee4da63301db9d9 Mon Sep 17 00:00:00 2001 From: Craig Davis Date: Wed, 27 May 2015 15:41:52 -0600 Subject: [PATCH] Add CHANGELOG and update README --- CHANGELOG.md | 9 +++++++++ README.md | 6 +++--- src/Console/Command/MailboxCommand.php | 2 -- 3 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..655d710 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index db1ccbf..876d5db 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` diff --git a/src/Console/Command/MailboxCommand.php b/src/Console/Command/MailboxCommand.php index 099e2f0..5109bff 100644 --- a/src/Console/Command/MailboxCommand.php +++ b/src/Console/Command/MailboxCommand.php @@ -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);