File tree 1 file changed +37
-0
lines changed
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 2.0.4: Normalized float to double
4
+
5
+ Normalization from float to double, thanks to @ItsKelsBoys
6
+
7
+ ## 2.0.3: Updated test suite
8
+
9
+ * upgraded PHP CS Fixer (from 1.6 to 2.10)
10
+ * upgraded phpspec (from 3.0 to 4.3)
11
+
12
+ ## 2.0.1: PHP 7.2 support
13
+
14
+ Added support for PHP 7.2, thanks to @roukmoute
15
+
16
+ BC break: Object has be renamed to Objekt, has it is a reserved keyword.
17
+
18
+ ## 2.0.0: PHP 7 and Return type hints
19
+
20
+ This release is the same as 2.0.0-alpha3,
21
+ compared to 1.4.1 it brings the following features:
22
+
23
+ Dropped support for PHP < 7
24
+
25
+ This means we now can use:
26
+
27
+ * scalar type hints
28
+ * return type hints
29
+ * callable type hint, without having to check PHP version
30
+
31
+ All ` make ` static constructor were created for PHP < 5.6, they're
32
+ now deprecated. Here's an example of what to use instead:
33
+
34
+ ```
35
+ (new Method('sayHello'))
36
+ ->addArgument(new Argument('string', 'name')))
37
+ ;
38
+ ```
39
+
3
40
## 2.0.0-alpha3: Return type hints
4
41
5
42
* added return type hints
You can’t perform that action at this time.
0 commit comments