Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
issueNumber: MDL-86231
2
notes:
3
  core:
4
    - message: >
5
        The Behat `::execute()` method now accepts an array-style callable in
6
        addition to the string `classname::method` format.
7
 
8
 
9
        The following formats are now accepted:
10
 
11
 
12
        ```php
13
 
14
        // String format:
15
 
16
        $this->execute('behat_general::i_click_on', [...]);
17
 
18
 
19
        // Array format:
20
 
21
        $this->execute([behat_general::class,' i_click_on'], [...]);
22
 
23
        ```
24
      type: improved