Skip to content

Commit

Permalink
Serialize ACRONYM -> MixedCase
Browse files Browse the repository at this point in the history
- PHPCode -> PhpCode
- PHPSerialize -> PhpSerialize
- WDDX -> Wddx
  • Loading branch information
weierophinney committed Jul 20, 2010
1 parent 2c3472a commit c93af45
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class PHPCode extends AbstractAdapter
class PhpCode extends AbstractAdapter
{
/**
* Serialize PHP using var_export
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class PHPSerialize extends AbstractAdapter
class PhpSerialize extends AbstractAdapter
{
/**
* @var null|string Serialized boolean false value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class WDDX extends AbstractAdapter
class Wddx extends AbstractAdapter
{
/**
* @var array Default options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class AMF0Test extends \PHPUnit_Framework_TestCase
class Amf0Test extends \PHPUnit_Framework_TestCase
{

private $_adapter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class AMF3Test extends \PHPUnit_Framework_TestCase
class Amf3Test extends \PHPUnit_Framework_TestCase
{

private $_adapter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class JSONTest extends \PHPUnit_Framework_TestCase
class JsonTest extends \PHPUnit_Framework_TestCase
{

private $_adapter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class PHPCodeTest extends \PHPUnit_Framework_TestCase
class PhpCodeTest extends \PHPUnit_Framework_TestCase
{

private $_adapter;

public function setUp()
{
$this->_adapter = new \Zend\Serializer\Adapter\PHPCode();
$this->_adapter = new \Zend\Serializer\Adapter\PhpCode();
}

public function tearDown()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class PHPSerializeTest extends \PHPUnit_Framework_TestCase
class PhpSerializeTest extends \PHPUnit_Framework_TestCase
{

private $_adapter;

public function setUp()
{
$this->_adapter = new \Zend\Serializer\Adapter\PHPSerialize();
$this->_adapter = new \Zend\Serializer\Adapter\PhpSerialize();
}

public function tearDown()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class WDDXTest extends \PHPUnit_Framework_TestCase
class WddxTest extends \PHPUnit_Framework_TestCase
{

private $_adapter;
Expand All @@ -42,7 +42,7 @@ public function setUp()
if (!constant('TESTS_ZEND_SERIALIZER_ADAPTER_WDDX_ENABLED')) {
$this->markTestSkipped('Zend_Serializer WDDX tests are not enabled');
}
$this->_adapter = new \Zend\Serializer\Adapter\WDDX();
$this->_adapter = new \Zend\Serializer\Adapter\Wddx();
}

public function tearDown()
Expand Down

0 comments on commit c93af45

Please sign in to comment.