Home
last modified time | relevance | path

Searched refs:stdClass (Results 1 – 25 of 93) sorted by relevance

1234

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Invocation/
H A DObjectTest.php13 new stdClass
25 new stdClass
38 new stdClass
46 $expectedObject = new stdClass;
62 'foo', 5, ['a', 'b'], new stdClass, null, false
70 new stdClass
78 $parameters = [new stdClass];
86 new stdClass,
103 new stdClass
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DFactoryTest.php41 array(new \stdClass, new \stdClass, 'SebastianBergmann\\Comparator\\ObjectComparator'),
51 array($tmpfile, new \stdClass, 'SebastianBergmann\\Comparator\\TypeComparator'),
52 array(new \stdClass, $tmpfile, 'SebastianBergmann\\Comparator\\TypeComparator'),
53 array(new \stdClass, array(1), 'SebastianBergmann\\Comparator\\TypeComparator'),
54 array(array(1), new \stdClass, 'SebastianBergmann\\Comparator\\TypeComparator'),
55 array(new \stdClass, '1', 'SebastianBergmann\\Comparator\\TypeComparator'),
56 array('1', new \stdClass, 'SebastianBergmann\\Comparator\\TypeComparator'),
59 array(1.0, new \stdClass, 'SebastianBergmann\\Comparator\\TypeComparator'),
60 array(new \stdClass, 1.0, 'SebastianBergmann\\Comparator\\TypeComparator'),
H A DSplObjectStorageComparatorTest.php14 use stdClass; alias
32 array(new SplObjectStorage, new stdClass),
33 array(new stdClass, new SplObjectStorage),
34 array(new stdClass, new stdClass)
40 $object1 = new stdClass();
41 $object2 = new stdClass();
64 $object1 = new stdClass;
65 $object2 = new stdClass;
H A DObjectComparatorTest.php13 use stdClass; alias
33 array(new stdClass, new stdClass),
34 array(new stdClass, new TestClass)
41 array(new stdClass, null),
42 array(null, new stdClass),
84 $book4 = new stdClass;
H A DTypeComparatorTest.php13 use stdClass; alias
33 array(null, new stdClass),
46 array(new stdClass, new stdClass),
61 array(new stdClass, array()),
/plugin/findologicxmlexport/vendor/sebastian/object-enumerator/tests/
H A DEnumeratorTest.php32 $a = new \stdClass;
42 $a = new \stdClass;
52 $a = new \stdClass;
62 $a = new \stdClass;
63 $b = new \stdClass;
74 $a = new \stdClass;
75 $b = new \stdClass;
89 $a = new \stdClass;
90 $b = new \stdClass;
103 $a = new \stdClass;
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dstdclass.rst1 stdClass chapter
4 The serializer offers support for serializing ``stdClass`` objects, however the use of
5 ``stdClass`` objects is discouraged.
7 The current implementation serializes all the properties of a ``stdClass`` object in
10 There are many known limitations when dealing with ``stdClass`` objects.
15 - specify any extra serialization information for properties that are part of the ``stdClass`` obje…
16 - deserialize data into ``stdClass`` objects
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DStdClassHandler.php40 …public function serializeStdClass(SerializationVisitorInterface $visitor, \stdClass $stdClass, arr… argument
43 $visitor->startVisitingObject($classMetadata, $stdClass, ['name' => 'stdClass'], $context);
45 foreach ((array) $stdClass as $name => $value) {
50 … return $visitor->endVisitingObject($classMetadata, $stdClass, ['name' => 'stdClass'], $context);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dreplace_invalid_arg.test4 {{ 'test %foo%'|replace(stdClass) }}
6 return ['stdClass' => new \stdClass()]
8 …place" filter expects an array or "Traversable" as replace values, got "stdClass" in "index.twig" …
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DAssertTest.php36 $a = new stdClass;
37 $b = new stdClass;
54 $a = new stdClass;
55 $b = new stdClass;
440 $a = new stdClass;
441 $b = new stdClass;
458 $a = new stdClass;
459 $b = new stdClass;
1767 new stdClass,
1773 new stdClass
[all …]
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php30 $obj2 = new \stdClass;
35 $obj = new \stdClass;
94 array(new \stdClass, 'stdClass Object &%x ()'),
189 $obj = new \stdClass;
269 $obj = new \stdClass;
285 array(new \stdClass, 'stdClass Object ()'),
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php263 $bar = new \stdClass();
266 $zar = new \stdClass();
267 $foo = new \stdClass();
270 $object = new \stdClass();
277 $parsedArrayObject = new \stdClass();
344 … $this->assertSame('{ }', $this->dumper->dump(new \stdClass(), 2, 0, Yaml::DUMP_OBJECT_AS_MAP));
349 $deep = new \stdClass();
353 $inner = new \stdClass();
358 $outer = new \stdClass();
H A DInlineTest.php458 ['{}', new \stdClass()],
459 ['{ foo : bar, bar : {} }', (object) ['foo' => 'bar', 'bar' => new \stdClass()]],
460 ['{ foo : [], bar : {} }', (object) ['foo' => [], 'bar' => new \stdClass()]],
461 ['{foo: \'bar\', bar: {} }', (object) ['foo' => 'bar', 'bar' => new \stdClass()]],
462 ['{\'foo\': \'bar\', "bar": {}}', (object) ['foo' => 'bar', 'bar' => new \stdClass()]],
465 ['[foo, [{}, {}]]', ['foo', [new \stdClass(), new \stdClass()]]],
466 ['[foo, [[], {}]]', ['foo', [[], new \stdClass()]]],
467 … ['[foo, [[{}, {}], {}]]', ['foo', [[new \stdClass(), new \stdClass()], new \stdClass()]]],
468 ['[foo, {bar: {}}]', ['foo', '1' => (object) ['bar' => new \stdClass()]]],
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/_fixture/
H A DSnapshotClass.php26 private static $stdClass; variable in SebastianBergmann\\GlobalState\\TestFixture\\SnapshotClass
35 self::$stdClass = new \stdClass();
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Builder/
H A DInvocationMockerTest.php6 $mock = $this->getMockBuilder(stdClass::class)
19 $mock = $this->getMockBuilder(stdClass::class)
34 $mock = $this->getMockBuilder(stdClass::class)
49 $mock = $this->getMockBuilder(stdClass::class)
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DDataProviderDebugTest.php14 $obj2 = new \stdClass();
19 $obj = new \stdClass();
43 [new \stdClass(), $obj, [], $storage, $obj3],
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Matcher/
H A DConsecutiveParametersTest.php6 $mock = $this->getMockBuilder(stdClass::class)
23 $mock = $this->getMockBuilder(stdClass::class)
39 $mock = $this->getMockBuilder(stdClass::class)
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/
H A DGeneratorTest.php32 $this->generator->getMock(stdClass::class, [0]);
37 $mock = $this->generator->getMock(stdClass::class, ['testFunction']);
48 $this->generator->getMock(stdClass::class, ['foo', 'bar', 'foo']);
125 'mockClassName not a string' => [Countable::class, new stdClass],
166 $this->generator->getMock(stdClass::class, [], [], '', false, true, true, true, true);
H A DMockObjectTest.php508 $a = $this->getMockBuilder(stdClass::class)
518 $a = $this->getMockBuilder(stdClass::class)
521 $b = $this->getMockBuilder(stdClass::class)
529 $a = $this->getMockBuilder(stdClass::class)
532 $b = $this->getMockBuilder(stdClass::class)
540 $x = $this->getMockBuilder(stdClass::class)
558 $x = $this->getMockBuilder(stdClass::class)
576 $expectedObject = new stdClass;
604 $expectedObject = new stdClass;
867 $a = new stdClass;
[all …]
/plugin/mantisreporter/
H A Dsyntax.php356 $newIssue = new stdClass();
358 $newIssue->reporter = new stdClass();
361 $newIssue->priority = new stdClass();
364 $newIssue->project = new stdClass();
372 $prognose = new stdClass();
373 $prognose->field = new stdClass();
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dclass_with_method_that_declares_anonymous_class.php11 $o = new class extends stdClass {};
12 $o = new class extends stdClass {};
/plugin/findologicxmlexport/vendor/sebastian/exporter/
H A DREADME.md109 stdClass Object &0000000003a66dcc0000000025e723e2 (
110 'self' => stdClass Object &0000000003a66dcc0000000025e723e2
114 $obj = new stdClass();
133 // stdClass Object ()
134 print $exporter->shortenedExport(new stdClass);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Ddataprovider-debug.phpt24 …testProvider with data set #4 (stdClass Object (), stdClass Object (...), array(), SplObjectStorag…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
H A DSymfonyValidatorValidatorSubscriberTest.php26 $obj = new \stdClass();
44 $obj = new \stdClass();
61 …scriber->onPostDeserialize(new ObjectEvent(DeserializationContext::create(), new \stdClass(), []));
/plugin/yql/
H A Dsyntax.php188 if ($item->$title instanceof stdClass) {
194 if ($item->$link instanceof stdClass && !isset($item->$link->href)) {
199 if ($item->$link instanceof stdClass) {
212 if ($item->$val instanceof stdClass) {

1234