com presentations: Fixed casing of StdClass to stdClass: slides/mongodb/api-hippo.xml slides/mongodb/api-phongo-new.xml slides/mongodb/driver-history-1.0.0-2.xml
[email protected] (Derick Rethans) Sun, 04 Oct 2015 14:49:43 +0000
| Newsgroups | php.pres |
|---|---|
| Message-ID | <[email protected]> |
Commit: acd3d4a9dcde4a7ca7ba21788d865acb70967442 Author: Derick Rethans <[email protected]> Sun, 4 Oct 2015 15:49:43 +0100 Parents: cb2c7dfd1bfad4c787c50b3b81373af7ec342582 Branches: master Link: http://git.php.net/?p=presentations.git;a=commitdiff;h=acd3d4a9dcde4a7ca7ba21788d865acb70967442 Log: Fixed casing of StdClass to stdClass Changed paths: M slides/mongodb/api-hippo.xml M slides/mongodb/api-phongo-new.xml M slides/mongodb/driver-history-1.0.0-2.xml Diff: diff --git a/slides/mongodb/api-hippo.xml b/slides/mongodb/api-hippo.xml index bf46b98..f24225e 100644 --- a/slides/mongodb/api-hippo.xml +++ b/slides/mongodb/api-hippo.xml @@ -1,7 +1,7 @@ <slide> <title>Hippo output</title> -<example><![CDATA[StdClass +<example><![CDATA[stdClass ( [_id] => MongoDB\BSON\ObjectID Object ( diff --git a/slides/mongodb/api-phongo-new.xml b/slides/mongodb/api-phongo-new.xml index 439568a..2d0c186 100644 --- a/slides/mongodb/api-phongo-new.xml +++ b/slides/mongodb/api-phongo-new.xml @@ -1,7 +1,7 @@ <slide> <title>Phongo output (New)</title> -<example><![CDATA[StdClass +<example><![CDATA[stdClass ( [_id] => MongoDB\BSON\ObjectID Object ( diff --git a/slides/mongodb/driver-history-1.0.0-2.xml b/slides/mongodb/driver-history-1.0.0-2.xml index 5b1e698..4d48f80 100644 --- a/slides/mongodb/driver-history-1.0.0-2.xml +++ b/slides/mongodb/driver-history-1.0.0-2.xml @@ -5,7 +5,7 @@ <example result="1"><![CDATA[<?php $m = new Mongo; $c = $m->selectCollection( 'demo', 'test' ); $c->drop(); -$doc1 = new StdClass; +$doc1 = new stdClass; $doc1->foo = 'bar'; $doc2 = array( 'foo' => 'bar' );