Page MenuHomec4science

PhabricatorAphlictManagementDebugWorkflow.php
No OneTemporary

File Metadata

Created
Tue, Dec 24, 20:59

PhabricatorAphlictManagementDebugWorkflow.php

<?php
final class PhabricatorAphlictManagementDebugWorkflow
extends PhabricatorAphlictManagementWorkflow {
public function didConstruct() {
parent::didConstruct();
$this
->setName('debug')
->setSynopsis(
pht(
'Start the notifications server in the foreground and print large '.
'volumes of diagnostic information to the console.'));
}
public function execute(PhutilArgumentParser $args) {
parent::execute($args);
$this->setDebug(true);
$this->willLaunch();
return $this->launch();
}
}

Event Timeline