-
Notifications
You must be signed in to change notification settings - Fork 5
/
dop
executable file
·38 lines (34 loc) · 1.29 KB
/
dop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env php
<?php
require __DIR__ . '/vendor/autoload.php';
use DrupalPatchUtils\Command\BetaEval;
use DrupalPatchUtils\Command\BulkIssueCredit;
use DrupalPatchUtils\Command\Configure;
use DrupalPatchUtils\Command\CreateIssue;
use DrupalPatchUtils\Command\IssuePruner;
use DrupalPatchUtils\Command\IssueStat;
use DrupalPatchUtils\Command\Login;
use DrupalPatchUtils\Command\Logout;
use DrupalPatchUtils\Command\PostComment;
use DrupalPatchUtils\Command\RemainingCriticals;
use DrupalPatchUtils\Command\SearchIssuePatch;
use DrupalPatchUtils\Command\SearchRtbcPatches;
use DrupalPatchUtils\Command\ValidatePatch;
use DrupalPatchUtils\Command\ValidateRtbcPatches;
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new Configure());
$application->add(new PostComment());
$application->add(new CreateIssue());
$application->add(new SearchIssuePatch());
$application->add(new SearchRtbcPatches());
$application->add(new ValidatePatch());
$application->add(new ValidateRtbcPatches());
$application->add(new Login());
$application->add(new Logout());
$application->add(new RemainingCriticals());
$application->add(new IssuePruner());
$application->add(new IssueStat());
$application->add(new BetaEval());
$application->add(new BulkIssueCredit());
$application->run();