Home
last modified time | relevance | path

Searched refs:stdClass (Results 76 – 93 of 93) sorted by last modified time

1234

/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/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DContainerRuntimeLoaderTest.php23 … $container->expects($this->once())->method('get')->with('stdClass')->willReturn(new \stdClass());
/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/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/comparator/tests/
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 DTypeComparatorTest.php13 use stdClass; alias
33 array(null, new stdClass),
46 array(new stdClass, new stdClass),
61 array(new stdClass, array()),
/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/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/sebastian/global-state/tests/
H A DSnapshotTest.php34 'stdClass' => 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/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/symfony/yaml/
H A DCHANGELOG.md121 * Added support to dump `stdClass` and `ArrayAccess` objects as YAML mappings
H A DParser.php250 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $refValue instanceof \stdClass) {
267 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsed instanceof \stdClass) {
280 … if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsedItem instanceof \stdClass) {
327 … if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $value instanceof \stdClass) {
433 $object = new \stdClass();
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
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/scrape/HTMLPurifier/ConfigSchema/
H A Dschema.ser
/plugin/freechat/phpfreechat/lib/json/
H A DJSON.php622 $obj = 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) {
/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();

1234