TextDiffTestInput.php 596 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of PHP CS Fixer.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. * Dariusz Rumiński <dariusz.ruminski@gmail.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. /**
  12. * Input for @see \PhpCsFixer\Tests\TextDiffTest.
  13. *
  14. * @internal
  15. */
  16. final class TextDiffTestInput
  17. {
  18. public function foo($output)
  19. {
  20. $output->writeln('<error>'.(int)$output.'</error>');
  21. $output->writeln('<error> TEST </error>');
  22. $output->writeln('<error>'.(int)$output.'</error>');
  23. }
  24. }