cvs: pear /Services_Akismet/tests TestCase.php
[email protected] ("Michael Gauthier") Sun, 04 May 2008 00:21:48 -0000
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvsgauthierm1209860508@cvsserver> |
gauthierm Sun May 4 00:21:48 2008 UTC
Modified files:
/pear/Services_Akismet/tests TestCase.php
Log:
variable name cs fix
http://cvs.php.net/viewvc.cgi/pear/Services_Akismet/tests/TestCase.php?r1=1.1&r2=1.2&diff_format=u
Index: pear/Services_Akismet/tests/TestCase.php
diff -u pear/Services_Akismet/tests/TestCase.php:1.1 pear/Services_Akismet/tests/TestCase.php:1.2
--- pear/Services_Akismet/tests/TestCase.php:1.1 Sat May 3 18:49:59 2008
+++ pear/Services_Akismet/tests/TestCase.php Sun May 4 00:21:48 2008
@@ -38,7 +38,7 @@
* @author Michael Gauthier <[email protected]>
* @copyright 2008 silverorange
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
- * @version CVS: $Id: TestCase.php,v 1.1 2008/05/03 18:49:59 gauthierm Exp $
+ * @version CVS: $Id: TestCase.php,v 1.2 2008/05/04 00:21:48 gauthierm Exp $
* @link http://pear.php.net/package/Services_Akismet
*/
@@ -74,7 +74,7 @@
/**
* @var integer
*/
- private $_old_error_level;
+ private $_oldErrorLevel;
// }}}
// {{{ protected properties
@@ -113,7 +113,7 @@
public function setUp()
{
- $this->_old_error_level = error_reporting(E_ALL | E_STRICT);
+ $this->_oldErrorLevel = error_reporting(E_ALL | E_STRICT);
$this->akismet = new Services_Akismet(
$this->config['blogUri'], $this->config['apiKey'],
$this->getHttpClientImplementation());
@@ -125,7 +125,7 @@
public function tearDown()
{
unset($this->akismet);
- error_reporting($this->_old_error_level);
+ error_reporting($this->_oldErrorLevel);
}
// }}}