Advertisement
stronk7

Untitled

Jan 28th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. require_once(__DIR__ . '/../../../../lib/tests/behat/behat_deprecated.php');
  4.  
  5. class behat_mod_forum_deprecated extends behat_deprecated {
  6. /**
  7. * Eat.
  8. *
  9. * @When /^I eat "(?P<button_string>(?:[^"]|\\")*)"
  10. * @param string $buttontext
  11. *
  12. */
  13. public function i_eat($buttontext) {
  14. $this->deprecated_message(
  15. 'Use instead: And I ingest "button"');
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement