Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 29... Línea 29...
29
    /**
29
    /**
30
     * @return array Parameters to use to call the function.
30
     * @return array Parameters to use to call the function.
31
     * @throws InvalidDefinition A parameter has no value defined or guessable.
31
     * @throws InvalidDefinition A parameter has no value defined or guessable.
32
     */
32
     */
33
    public function resolveParameters(
33
    public function resolveParameters(
34
        MethodInjection $definition = null,
34
        ?MethodInjection $definition = null,
35
        ReflectionMethod $method = null,
35
        ?ReflectionMethod $method = null,
36
        array $parameters = [],
36
        array $parameters = [],
37
    ) : array {
37
    ) : array {
38
        $args = [];
38
        $args = [];
Línea 39... Línea 39...
39
 
39