Home
last modified time | relevance | path

Searched refs:obj (Results 176 – 200 of 405) sorted by path

12345678910>>...17

/plugin/fedauth/Auth/OpenID/
H A DSReg.php181 $obj = new $cls();
183 $obj->required = array();
184 $obj->optional = array();
185 $obj->policy_url = $policy_url;
186 $obj->ns_uri = $sreg_ns_uri;
200 return $obj;
226 $obj->ns_uri = $obj->_getSRegNS($m);
235 return $obj;
457 return $obj;
479 $obj->ns_uri = $obj->_getSRegNS($success_response->message);
[all …]
H A DServer.php135 function Auth_OpenID_isError($obj, $cls = 'Auth_OpenID_ServerError') argument
137 return is_a($obj, $cls);
646 $obj = new Auth_OpenID_AssociateRequest($session, $assoc_type);
647 $obj->message = $message;
648 $obj->namespace = $message->getOpenIDNamespace();
649 return $obj;
891 $obj = Auth_OpenID_CheckIDRequest::make($message,
899 if (is_a($obj, 'Auth_OpenID_ServerError')) {
900 return $obj;
903 $obj->claimed_id = $claimed_id;
[all …]
/plugin/fedauth/Auth/Yadis/
H A DManager.php116 $obj = $this->newObject($data);
118 if (!$obj) {
123 $obj->$k = $data[$k];
126 return $obj;
162 function toSession($obj) argument
165 foreach ($obj as $k => $v) {
169 $extra = $this->prepareForSave($obj);
185 function prepareForSave($obj) argument
206 foreach ($obj as $k => $v) {
257 function prepareForSave($obj) argument
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMethodMetadata.php46 public function invoke(object $obj, array $args = []) argument
48 return $this->reflection->invokeArgs($obj, $args);
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DMethodMetadataTest.php33 $obj = new TestObject();
36 $this->assertNull($obj->getFoo());
37 $metadata->invoke($obj, ['foo']);
38 $this->assertEquals('foo', $obj->getFoo());
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst55 function($visitor, MyObject $obj, array $type) {
56 return $obj->getName();
H A Dhandlers.rst19 function($visitor, MyObject $obj, array $type) {
20 return $obj->getName();
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php192 $obj = $this->currentObject;
195 return $obj;
H A DSerializationContext.php103 foreach ($this->visitingStack as $obj) {
104 $path[] = \get_class($obj);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DBaseSerializationTest.php208 self::assertEquals($obj, $dObj);
436 $obj = new SimpleInternalObject('foo', 'bar');
441 …$this->assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
450 … self::assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
459 …$this->assertEquals($obj, $this->deserialize($this->getContent('simple_object'), get_class($obj)));
1663 protected function getField($obj, $name) argument
1665 $ref = new \ReflectionProperty($obj, $name);
1668 return $ref->getValue($obj);
1671 private function setField($obj, $name, $value) argument
1673 $ref = new \ReflectionProperty($obj, $name);
[all …]
H A DXmlSerializationTest.php54 $obj = new InvalidUsageOfXmlValue();
55 $this->serialize($obj);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriberTest.php33 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => get_class($obj), 'p…
36 self::assertEquals(['name' => get_parent_class($obj), 'params' => []], $event->getType());
37 self::assertTrue($obj->__isInitialized());
42 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakedName', 'param…
46 self::assertFalse($obj->__isInitialized());
64 self::assertFalse($obj->__isInitialized());
71 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakedName', 'param…
75 self::assertFalse($obj->__isInitialized());
90 self::assertFalse($obj->__isInitialized());
93 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakeName', 'params…
[all …]
H A DSymfonyValidatorValidatorSubscriberTest.php26 $obj = new \stdClass();
30 ->with($obj, null, ['foo'])
35 $this->subscriber->onPostDeserialize(new ObjectEvent($context, $obj, []));
44 $obj = new \stdClass();
48 ->with($obj, null, ['foo'])
53 $this->subscriber->onPostDeserialize(new ObjectEvent($context, $obj, []));
/plugin/findologicxmlexport/vendor/jms/serializer/tests/
H A DSerializerBuilderTest.php272 private function getField($obj, $name) argument
274 $ref = new \ReflectionProperty($obj, $name);
277 return $ref->getValue($obj);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Twig/
H A DSerializerExtensionTest.php17 $obj = new \stdClass();
21 ->with($this->equalTo($obj), $this->equalTo('json'));
23 $serializerExtension->serialize($obj);
39 $obj = new \stdClass();
45 ->with($this->equalTo($obj), $this->equalTo('json'));
48 $serializerExtension->serialize($obj);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DAssertTest.php202 $obj = new \stdClass;
203 $reference = &$obj;
204 $array = ['a' => $obj];
212 $obj = new \stdClass;
213 $reference = &$obj;
214 $array = ['a' => $obj];
1939 $obj = new ClassWithNonPublicAttributes;
2645 $obj = new stdClass;
2646 $obj->foo = 'bar';
2661 $obj = new stdClass;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DDataProviderDebugTest.php19 $obj = new \stdClass();
21 $obj->null = null;
23 $obj->boolean = true;
24 $obj->integer = 1;
25 $obj->double = 1.2;
26 $obj->string = '1';
28 $obj->object = $obj2;
29 $obj->objectagain = $obj2;
30 $obj->array = ['foo' => 'bar'];
31 $obj->self = $obj;
[all …]
/plugin/findologicxmlexport/vendor/sebastian/exporter/
H A DREADME.md114 $obj = new stdClass();
115 $obj->self = $obj;
116 print $exporter->export($obj);
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php35 $obj = new \stdClass;
37 $obj->null = null;
39 $obj->boolean = true;
40 $obj->integer = 1;
41 $obj->double = 1.2;
42 $obj->string = '1';
44 $obj->object = $obj2;
47 $obj->self = $obj;
95 array($obj,
190 $obj->foo = 'bar';
[all …]
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/tests/
H A DContextTest.php50 $obj = new \stdClass();
52 $obj->null = null;
54 $obj->boolean = true;
55 $obj->integer = 1;
56 $obj->double = 1.2;
57 $obj->string = '1';
59 $obj->object = $obj2;
60 $obj->objectagain = $obj2;
63 $obj->array3 = array($obj, $obj2, $obj3);
64 $obj->self = $obj;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG1038 * added public properties support (obj.item can now be the item property on the obj object)
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DSandboxExtension.php80 public function checkMethodAllowed($obj, $method) argument
83 $this->policy->checkMethodAllowed($obj, $method);
87 public function checkPropertyAllowed($obj, $method) argument
90 $this->policy->checkPropertyAllowed($obj, $method);
94 public function ensureToStringAllowed($obj) argument
96 if ($this->isSandboxed() && \is_object($obj) && method_exists($obj, '__toString')) {
97 $this->policy->checkMethodAllowed($obj, '__toString');
100 return $obj;
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicy.php89 public function checkMethodAllowed($obj, $method) argument
91 if ($obj instanceof \Twig_TemplateInterface || $obj instanceof Markup) {
98 if ($obj instanceof $class) {
106 $class = \get_class($obj);
111 public function checkPropertyAllowed($obj, $property) argument
115 if ($obj instanceof $class) {
123 $class = \get_class($obj);
H A DSecurityPolicyInterface.php23 public function checkMethodAllowed($obj, $method); argument
25 public function checkPropertyAllowed($obj, $method); argument
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dattribute.test4 {{ attribute(obj, method) }}
6 {{ attribute(obj, "bar", ["a", "b"]) }}
7 {{ attribute(obj, "bar", arguments) }}
8 {{ attribute(obj, method) is defined ? 'ok' : 'ko' }}
9 {{ attribute(obj, nonmethod) is defined ? 'ok' : 'ko' }}
11 return ['obj' => new TwigTestFoo(), 'method' => 'foo', 'array' => ['foo' => 'bar'], 'item' => 'foo'…

12345678910>>...17