~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to src/workflow/ArcanistAnoidWorkflow.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141101232006-mvlnp0cil67tsboe
Tags: upstream-0~git20141101/arcanist
Import upstream version 0~git20141101, component arcanist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
final class ArcanistAnoidWorkflow extends ArcanistWorkflow {
 
4
 
 
5
  public function getWorkflowName() {
 
6
    return 'anoid';
 
7
  }
 
8
 
 
9
  public function getCommandSynopses() {
 
10
    return phutil_console_format(<<<EOTEXT
 
11
      **anoid**
 
12
EOTEXT
 
13
      );
 
14
  }
 
15
 
 
16
  public function getCommandHelp() {
 
17
    return phutil_console_format(<<<EOTEXT
 
18
          There's only one way to find out...
 
19
EOTEXT
 
20
      );
 
21
  }
 
22
 
 
23
  public function run() {
 
24
    phutil_passthru(
 
25
      '%s/scripts/breakout.py',
 
26
      dirname(phutil_get_library_root('arcanist')));
 
27
  }
 
28
 
 
29
}