<?php
class User {
}
class UserProvider {
public static function getServices() {
return ['user'];
}
public static function user() {
return new User();
}
}
$services = array_map(function($factoryName) {
return [UserProvider::class, $factoryName]();
}, UserProvider::getServices());
var_dump($services);
Parse error: syntax error, unexpected '(' in /in/fGuZK on line 19
Process exited with code 255.
Output for 5.4.0 - 5.4.45
Parse error: syntax error, unexpected 'class' (T_CLASS), expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in /in/fGuZK on line 19
Process exited with code 255.
Parse error: syntax error, unexpected '[' in /in/fGuZK on line 9
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/fGuZK on line 9
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/fGuZK on line 8
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/fGuZK on line 8
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/fGuZK on line 8
Process exited with code 255.