mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:56:12 +01:00
5f51604f14
Resolves: #346
14 lines
405 B
PHP
14 lines
405 B
PHP
#!/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());
|