PhpExecutableFinderFactory.php 418 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Process;
  7. class PhpExecutableFinderFactory
  8. {
  9. /**
  10. * Create PhpExecutableFinder instance
  11. *
  12. * @return \Symfony\Component\Process\PhpExecutableFinder
  13. */
  14. public function create()
  15. {
  16. return new \Symfony\Component\Process\PhpExecutableFinder();
  17. }
  18. }