File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file. This project adheres to
3
3
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
4
4
5
+ ## [ 0.5.3] - 2016-12-01
6
+
7
+ ### Fixed
8
+ - #31 Fix expression in abstract generator command that is not compatible with PHP 5.5
9
+
5
10
## [ 0.5.2] - 2016-11-11
6
11
7
12
### Added
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ abstract class AbstractGeneratorCommand extends GeneratorCommand
85
85
*
86
86
* @var string
87
87
*/
88
- private $ stubsDirectory = __DIR__ . ' /../../../stubs ' ;
88
+ private $ stubsDirectory ;
89
89
90
90
/**
91
91
* Create a new config clear command instance.
@@ -99,6 +99,7 @@ public function __construct(Filesystem $files)
99
99
$ this ->useEloquent = config ('json-api.generator.use-eloquent ' , true );
100
100
$ this ->subNamespace = config ('json-api.generator.namespace ' , 'JsonApi ' );
101
101
$ this ->namespaceByResource = config ('json-api.generator.by-resource ' , true );
102
+ $ this ->stubsDirectory = __DIR__ . '/../../../stubs ' ;
102
103
}
103
104
104
105
/**
You can’t perform that action at this time.
0 commit comments