appendices/migration72/incompatible.xml
6d29533483657c036e49edb5ea88c7103d126681
...
...
@@ -135,7 +135,7 @@ var_dump(
135
135
count(null), // NULL is not countable
136
136
count(1), // integers are not countable
137
137
count('abc'), // strings are not countable
138
-
count(new stdclass), // objects not implementing the Countable interface are not countable
138
+
count(new stdClass), // objects not implementing the Countable interface are not countable
139
139
count([1,2]) // arrays are countable
140
140
);
141
141
]]>
142
142