KeyboardForTests.php 603 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of Chrome PHP.
  4. *
  5. * (c) Soufiane Ghzal <sghzal@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace HeadlessChromium\Test;
  11. use HeadlessChromium\Input\KeyboardKeys;
  12. class KeyboardForTests
  13. {
  14. use KeyboardKeys {
  15. onKeyPress as public;
  16. onKeyRelease as public;
  17. toggleModifierFromKey as public;
  18. toggleModifier as public;
  19. isKeyPressed as public;
  20. setCurrentKey as public;
  21. }
  22. }