Skip to content

Commit b19c063

Browse files
committed
Cleanup
1 parent 7ab89e2 commit b19c063

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

exercises/all-mixed-up/problem/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As alluded to earlier in `Unite The Types` PHP's type system has been constantly and consistently growing and evolving for a long time.
1+
PHP's type system has been constantly and consistently growing and evolving for a long time.
22

33
PHP 8 comes with a new type `mixed` which is essentially a union of `array|bool|callable|int|float|object|resource|string|null`.
44

exercises/have-the-last-say/problem/problem.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,4 @@ Documentation on the `feof` function can be found by pointing your browser here:
6363
----------------------------------------------------------------------
6464
## EXTRA
6565

66-
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.

exercises/the-attributes-of-success/problem/problem.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ The last task is to dump your object instance out using the PHP function `var_du
118118

119119
### The advantages of Attributes
120120

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.
125125

126126
----------------------------------------------------------------------
127127
## HINTS
@@ -135,6 +135,7 @@ You must call the `deserialize` function and you must use the `var_dump` functio
135135

136136
If you want to see the `JSON` data - use `var_dump` to dump it out.
137137

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.
138139

139140
## Extra
140141

0 commit comments

Comments
 (0)