Avoid the warning of an unitialized variable in .htconfig.php

This commit is contained in:
Michael 2018-03-26 20:58:34 +00:00
parent 25981e8a22
commit b48df6a828
5 changed files with 10 additions and 0 deletions

View File

@ -79,6 +79,8 @@ HELP;
protected function doExecute()
{
$a = get_app();
if ($this->getOption('v')) {
$this->out('Executable: ' . $this->executable);
$this->out('Class: ' . __CLASS__);

View File

@ -39,6 +39,8 @@ HELP;
protected function doExecute()
{
$a = get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);
$this->out('Arguments: ' . var_export($this->args, true));

View File

@ -39,6 +39,8 @@ HELP;
protected function doExecute()
{
$a = get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);
$this->out('Arguments: ' . var_export($this->args, true));

View File

@ -47,6 +47,8 @@ HELP;
protected function doExecute()
{
$a = get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);
$this->out('Arguments: ' . var_export($this->args, true));

View File

@ -47,6 +47,8 @@ HELP;
protected function doExecute()
{
$a = get_app();
if ($this->getOption('v')) {
$this->out('Class: ' . __CLASS__);
$this->out('Arguments: ' . var_export($this->args, true));