Acceptance.php 213 B

12345678910111213
  1. <?php
  2. declare(strict_types = 1);
  3. namespace Helper;
  4. // here you can define custom actions
  5. // all public methods declared in helper class will be available in $I
  6. class Acceptance extends \Codeception\Module
  7. {
  8. }