XliffTest.php 584 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of the Sonata project.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  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 Sonata\AdminBundle\Tests\Resources;
  11. use Sonata\CoreBundle\Test\XliffValidatorTestCase;
  12. class XliffTest extends XliffValidatorTestCase
  13. {
  14. /**
  15. * @return array List all path to validate xliff
  16. */
  17. public function getXliffPaths()
  18. {
  19. return array(array(__DIR__.'/../../Resources/translations'));
  20. }
  21. }