CliDelete:

- execute() and help() must be public


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1571 a1433add-5e2c-0410-b055-b7f2511e0802
pull/2/head
Christian Boltz 11 years ago
parent 0a71a236c2
commit f1831975c0

@ -8,7 +8,7 @@ class CliDelete extends Shell {
/**
* Execution method always used for tasks
*/
protected function execute() {
public function execute() {
if (empty($this->args)) {
$this->__interactive();
@ -60,7 +60,7 @@ class CliDelete extends Shell {
*
* @access public
*/
protected function help() {
public function help() {
$module = preg_replace('/Handler$/', '', $this->handler_to_use);
$module = strtolower($module);

Loading…
Cancel
Save