• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/Log/Writer/Mock.php

00001 <?php
00024 require_once 'Zend/Log/Writer/Abstract.php';
00025 
00034 class Zend_Log_Writer_Mock extends Zend_Log_Writer_Abstract
00035 {
00039     public $events = array();
00040 
00044     public $shutdown = false;
00045 
00052     public function _write($event)
00053     {
00054         $this->events[] = $event;
00055     }
00056 
00062     public function shutdown()
00063     {
00064         $this->shutdown = true;
00065     }
00066 }

Generated on Thu Apr 19 2012 17:01:18 for openbiz by  doxygen 1.7.2