You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although not entirely necessary for a small script, it is good practise to close
67
-
any open file handles so that other processes can access them, you can use `fclose`
68
-
for that.
66
+
Although not entirely necessary for a small script, it is good practise to close any open file handles so that other processes can access them, you can use `fclose` for that.
Copy file name to clipboardExpand all lines: exercises/the-attributes-of-success/problem/problem.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -118,10 +118,10 @@ The last task is to dump your object instance out using the PHP function `var_du
118
118
119
119
### The advantages of Attributes
120
120
121
-
* Add Metadata to classes, methods, properties and arguments and so on
122
-
* They can replace PHP doc blocks, each with custom parsers and rules to a unified standard supported by PHP
123
-
* The data can be introspected using PHP's Reflection API's
124
-
* PHP Core and extensions can provide new behaviour and runtime configuration which is opt-in, such as conditionally declaring functions, deprecating features and so on
121
+
* Add Metadata to classes, methods, properties and arguments and so on.
122
+
* They can replace PHP doc blocks, each with custom parsers and rules to a unified standard supported by PHP.
123
+
* The data can be introspected using PHP's Reflection API's.
124
+
* PHP Core and extensions can provide new behaviour and runtime configuration which is opt-in, such as conditionally declaring functions, deprecating features and so on.
@@ -135,6 +135,7 @@ You must call the `deserialize` function and you must use the `var_dump` functio
135
135
136
136
If you want to see the `JSON` data - use `var_dump` to dump it out.
137
137
138
+
For verification purposes, the order the properties defined in your `Review` class is important. Define them in the same order they are described to you.
0 commit comments