mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
15 lines
405 B
Text
15 lines
405 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
include_once __DIR__ . '/../../.Build/vendor/autoload.php';
|
||
|
|
||
|
use Symfony\Component\Console\Application;
|
||
|
use Symfony\Component\Translation\Command\XliffLintCommand;
|
||
|
use Symfony\Component\Yaml\Command\LintCommand;
|
||
|
|
||
|
$application = new Application();
|
||
|
$application->add(new XliffLintCommand(null, null, null, false));
|
||
|
$application->add(new LintCommand());
|
||
|
|
||
|
exit($application->run());
|