Example #1
0
 /**
  * This method is used to tell which errors you expect to get.
  * Expected errors are always returned with error mode
  * PEAR_ERROR_RETURN.  Expected error codes are stored in a stack,
  * and this method pushes a new element onto it.  The list of
  * expected errors are in effect until they are popped off the
  * stack with the popExpect() method.
  *
  * Note that this method can not be called statically
  *
  * @param mixed $code a single error code or an array of error codes to expect
  *
  * @return int     the new depth of the "expected errors" stack
  *
  * @uses PEAR::expectError()
  */
 public function expectError($code = '*')
 {
     return $this->pear->expectError($code);
 }