12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- class sfNoLogger extends sfLogger
- {
-
- public function initialize(sfEventDispatcher $dispatcher, $options = array())
- {
- }
-
- protected function doLog($message, $priority)
- {
- }
- }
|