From d32a49dfb61072dcf9619b181de9d9c762e6e26c Mon Sep 17 00:00:00 2001 From: Rougin Royce Gutib Date: Sat, 5 Mar 2016 00:55:32 +0800 Subject: [PATCH] Forgot code in AbstractCommand --- CHANGELOG.md | 5 +++++ src/AbstractCommand.php | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 158262f..27859bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All Notable changes to `Refinery` will be documented in this file +## [0.1.6](https://github.com/rougin/refinery/compare/v0.1.5...v0.1.6) - 2016-03-05 + +### Fixed +- Forgot code `$this->codeigniter = get_instance();` in `AbstractCommand` + ## [0.1.5](https://github.com/rougin/refinery/compare/v0.1.4...v0.1.5) - 2016-03-03 ### Changed diff --git a/src/AbstractCommand.php b/src/AbstractCommand.php index 84784d9..4879200 100644 --- a/src/AbstractCommand.php +++ b/src/AbstractCommand.php @@ -35,6 +35,7 @@ public function __construct(Describe $describe, Twig_Environment $renderer) { parent::__construct(); + $this->codeigniter = get_instance(); $this->describe = $describe; $this->renderer = $renderer; }