-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Loïc Chardonnet
committed
May 25, 2015
1 parent
f9e51d5
commit c81cc55
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
# CHANGELOG | ||
|
||
## 0.3.0: Constructor generation | ||
|
||
* constructor generation, same as method except: | ||
* it inserts constructor at the begining of the class | ||
* it inserts properties with initialization for each constructor arguments | ||
|
||
## 0.2.0: Use statements | ||
|
||
* added insertion of use statements | ||
* use statement insertion (for each object argument) | ||
|
||
## 0.1.1: Fixed object type hints | ||
|
||
* fixed Prophecy test doubles type guessing | ||
|
||
## 0.1.0: Method Generation | ||
|
||
* created method generator | ||
* method generation: | ||
* it inserts method at the end of the class | ||
* it typehints object, array and callable arguments | ||
* it names object arguments after their type | ||
* it names scalar arguments after a generic name (`argument`) | ||
* it adds number on names that could collide (e.g. `$argument1, $argument2`) |