minor #9288 fix typo : StdClass should be stdClass with little "s" (samsonasik)

This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #9288).

Discussion
----------

fix typo : StdClass should be stdClass with little "s"

Commits
-------

febd1d8 fix typo : StdClass should be stdClass with little "s"
This commit is contained in:
Fabien Potencier 2013-10-13 08:32:10 +02:00
commit 90b483aa44
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ class GenericEventTest extends \PHPUnit_Framework_TestCase
{
parent::setUp();
$this->subject = new \StdClass();
$this->subject = new \stdClass();
$this->event = new GenericEvent($this->subject, array('name' => 'Event'), 'foo');
}

View File

@ -154,7 +154,7 @@ class NativeSessionStorageTest extends \PHPUnit_Framework_TestCase
public function testSetSaveHandlerException()
{
$storage = $this->getStorage();
$storage->setSaveHandler(new \StdClass);
$storage->setSaveHandler(new \stdClass);
}
public function testSetSaveHandler53()

View File

@ -70,7 +70,7 @@ class JsonDecode implements DecoderInterface
*
* json_decode_associative: boolean
* If true, returns the object as associative array.
* If false, returns the object as nested StdClass
* If false, returns the object as nested stdClass
* If not specified, this method will use the default set in JsonDecode::__construct
*
* json_decode_recursion_depth: integer