Feature #40
Check all classes for Array type hinting
| Status: | Closed | Start: | ||
| Priority: | Should have | Due date: | ||
| Assigned to: | Robert Lemke | % Done: | 0% |
|
| Category: | - | |||
| Target version: | 0.1.0 | |||
Description
There might be places where an array is expected as a parameter but no type hinting is used yet. In these cases, type hinting should be introduced.
Example:
protected function mySuperFunction(array $thisIsAnArray) {
...
}