Changeset 54891 for trunk/tests/phpunit/tests/cache.php
- Timestamp:
- 11/29/2022 03:49:49 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/cache.php
r53835 r54891 231 231 public function test_object_refs() { 232 232 $key = __FUNCTION__ . '_1'; 233 $object_a = new stdClass ;233 $object_a = new stdClass(); 234 234 $object_a->foo = 'alpha'; 235 235 $this->cache->set( $key, $object_a ); … … 241 241 242 242 $key = __FUNCTION__ . '_2'; 243 $object_a = new stdClass ;243 $object_a = new stdClass(); 244 244 $object_a->foo = 'alpha'; 245 245 $this->cache->add( $key, $object_a );
Note: See TracChangeset
for help on using the changeset viewer.