AutorÃa | Ultima modificación | Ver Log |
issueNumber: MDL-86231notes:core:- message: >The Behat `::execute()` method now accepts an array-style callable inaddition to the string `classname::method` format.The following formats are now accepted:```php// String format:$this->execute('behat_general::i_click_on', [...]);// Array format:$this->execute([behat_general::class,' i_click_on'], [...]);```type: improved