1<?php
2
3/*
4 * This file is part of pgFouine.
5 *
6 * pgFouine - a PostgreSQL log analyzer
7 * Copyright (c) 2005-2008 Guillaume Smet
8 *
9 * pgFouine is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * pgFouine is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with pgFouine; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.
22 */
23
24class GlobalErrorCountersListener extends ErrorListener {
25	var $errorCount = 0;
26
27	function fireEvent(& $error) {
28		$this->errorCount++;
29	}
30
31	function getErrorCount() {
32		return $this->errorCount;
33	}
34}
35
36?>