FailingAdapter.php 877 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.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 Symfony\Component\Finder\Tests\FakeAdapter;
  11. use Symfony\Component\Finder\Adapter\AbstractAdapter;
  12. use Symfony\Component\Finder\Exception\AdapterFailureException;
  13. /**
  14. * @author Jean-François Simon <contact@jfsimon.fr>
  15. */
  16. class FailingAdapter extends AbstractAdapter
  17. {
  18. /**
  19. * {@inheritdoc}
  20. */
  21. public function searchInDirectory($dir)
  22. {
  23. throw new AdapterFailureException($this);
  24. }
  25. /**
  26. * {@inheritdoc}
  27. */
  28. public function getName()
  29. {
  30. return 'failing';
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. protected function canBeUsed()
  36. {
  37. return true;
  38. }
  39. }