Development

Changeset 14155

You must first sign up to be able to contribute.

Changeset 14155

Show
Ignore:
Timestamp:
12/17/08 23:56:15 (4 years ago)
Author:
geoffrey
Message:

sfConsolePlugin: made errorHandler public and added docblock

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfConsolePlugin/trunk/lib/task/consoleRunTask.class.php

    r14147 r14155  
    238238  } 
    239239 
    240   protected function errorHandler($errno, $errstr, $errfile, $errline, $errcontext) 
     240  /** 
     241   * Error handler 
     242   *  
     243   * @param integer $errno 
     244   * @param string $errstr 
     245   */ 
     246 
     247  public function errorHandler($errno, $errstr) 
    241248  { 
    242249    echo (isset($this->errorNames[$errno]) ? $this->errorNames[$errno] : 'Unknown Error').': '.$errstr;