ProcedureFactoryInterface.php 522 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of the php-phantomjs.
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. namespace JonnyW\PhantomJs\Procedure;
  9. /**
  10. * PHP PhantomJs
  11. *
  12. * @author Jon Wenmoth <contact@jonnyw.me>
  13. */
  14. interface ProcedureFactoryInterface
  15. {
  16. /**
  17. * Create new procedure instance.
  18. *
  19. * @access public
  20. * @return \JonnyW\PhantomJs\Procedure\ProcedureInterface
  21. */
  22. public function createProcedure();
  23. }