Home
last modified time | relevance | path

Searched refs:method (Results 76 – 100 of 972) sorted by relevance

12345678910>>...39

/plugin/authfacebook/lib/
H A DFacebookRequest.php54 protected $method; variable in Facebook\\FacebookRequest
91 * @param string|null $method
97 …public function __construct(FacebookApp $app = null, $accessToken = null, $method = null, $endpoin… argument
101 $this->setMethod($method);
218 public function setMethod($method) argument
220 $this->method = strtoupper($method);
230 return $this->method;
240 if (!$this->method) {
244 if (!in_array($this->method, ['GET', 'POST', 'DELETE'])) {
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dlength.rst6 Support for the ``__toString()`` magic method has been added in Twig 1.33.
12 return value of the ``count()`` method.
14 For objects that implement the ``__toString()`` magic method (and not ``Countable``),
15 it will return the length of the string provided by that method.
17 …atorAggregate`` interface, ``length`` will use the return value of the ``iterator_count()`` method.
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearchableInterface.php41 * @param string $method Request method, see Request's constants
48 public function search($query = '', $options = null, string $method = Request::POST): ResultSet;
58 * @param string $method Request method, see Request's constants
66 public function count($query = '', string $method = Request::POST);
39 search($query = '', $options = null, string $method = Request POST) global() argument
53 count($query = '', string $method = Request POST) global() argument
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicy.php89 public function checkMethodAllowed($obj, $method) argument
96 $method = strtolower($method);
99 $allowed = \in_array($method, $methods);
107 …sprintf('Calling "%s" method on a "%s" object is not allowed.', $method, $class), $class, $method);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/
H A DFacade.php170 foreach ($unit['methods'] as $method) {
171 $methodObject = $unitObject->addMethod($method['methodName']);
172 $methodObject->setSignature($method['signature']);
173 $methodObject->setLines($method['startLine'], $method['endLine']);
174 $methodObject->setCrap($method['crap']);
176 $method['executableLines'],
177 $method['executedLines'],
178 $method['coverage']
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DResource.php103 $method = $this->methods[$name];
133 if (!isset($method['parameters'])) {
134 $method['parameters'] = array();
137 $method['parameters'] = array_merge(
139 $method['parameters']
143 if ($key != 'postBody' && ! isset($method['parameters'][$key])) {
157 foreach ($method['parameters'] as $paramName => $paramSpec) {
196 $method['path'],
204 $method['httpMethod'],
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php21 ->method('isReadable')
38 ->method('isReadable')
41 ->method('isSeekable')
44 ->method('seek')
129 ->method('isSeekable')
132 ->method('isReadable')
143 ->method('read')
146 ->method('isReadable')
149 ->method('eof')
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionHandlerTest.php26 $visitor->method('visitArray')->with(['foo'])->willReturn(['foo']);
44 $visitor->method('visitArray')->with([])->willReturn([]);
49 …$factoryMock->method('getMetadataForClass')->willReturn(new ClassMetadata(ArrayCollection::class));
51 $context->method('getExclusionStrategy')->willReturn(new AlwaysExcludeExclusionStrategy());
52 $context->method('getMetadataFactory')->willReturn($factoryMock);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DAccountsCustomBatchRequestEntry.php50 public $method; variable in Google\\Service\\ShoppingContent\\AccountsCustomBatchRequestEntry
161 public function setMethod($method) argument
163 $this->method = $method;
170 return $this->method;
H A DOrderLineItemShippingDetails.php58 public function setMethod(OrderLineItemShippingDetailsMethod $method) argument
60 $this->method = $method;
67 return $this->method;
H A DLiasettingsCustomBatchRequestEntry.php55 public $method; variable in Google\\Service\\ShoppingContent\\LiasettingsCustomBatchRequestEntry
180 public function setMethod($method) argument
182 $this->method = $method;
189 return $this->method;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DEnvironmentTest.php229 ->method('generateKey')
235 ->method('isFresh');
237 ->method('write');
239 ->method('load');
258 ->method('generateKey')
264 ->method('isFresh')
267 ->method('load');
290 ->method('isFresh')
293 ->method('write');
295 ->method('load');
[all …]
H A DContainerRuntimeLoaderTest.php22 $container->expects($this->once())->method('has')->with('stdClass')->willReturn(true);
23 … $container->expects($this->once())->method('get')->with('stdClass')->willReturn(new \stdClass());
36 $container->expects($this->once())->method('has')->with('Foo');
37 $container->expects($this->never())->method('get');
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DAnnotationReader.php276 public function getMethodAnnotations(ReflectionMethod $method) argument
278 $class = $method->getDeclaringClass();
279 $context = 'method ' . $class->getName() . '::' . $method->getName() . '()';
282 $this->parser->setImports($this->getMethodImports($method));
286 return $this->parser->parse($method->getDocComment(), $context);
292 public function getMethodAnnotation(ReflectionMethod $method, $annotationName) argument
294 $annotations = $this->getMethodAnnotations($method);
350 private function getMethodImports(ReflectionMethod $method) argument
352 $class = $method->getDeclaringClass();
361 if ($trait->hasMethod($method->getName())
[all …]
/plugin/diagramsnet/lib/js/diagramly/
H A DDriveComment.js27 method: 'POST'
45 method: 'PATCH'
50 method: 'PATCH'
61 method: 'DELETE'
65 method: 'DELETE'
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClientInterface.php50 * @param string $method HTTP method.
57 public function request($method, $uri, array $options = []); argument
67 * @param string $method HTTP method
73 public function requestAsync($method, $uri, array $options = []); argument
H A DClient.php79 * @param string $method
84 public function __call($method, $args) argument
93 return substr($method, -5) === 'Async'
94 ? $this->requestAsync(substr($method, 0, -5), $uri, $opts)
95 : $this->request($method, $uri, $opts);
140 * @param string $method HTTP method
146 public function requestAsync($method, $uri = '', array $options = []) argument
158 $request = new Psr7\Request($method, $uri, $headers, $body, $version);
172 * @param string $method HTTP method.
179 public function request($method, $uri = '', array $options = []) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DRequest.php39 public $method; variable in Google\\Service\\ServiceControl\\Request
128 public function setMethod($method) argument
130 $this->method = $method;
137 return $this->method;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md118 a token object to satisfy a method typehint.
142 method with arguments prophecy. Method prophecies give you the ability to create method
160 - `ReturnPromise` or `->willReturn(1)` - returns a value from a method call
171 predictions for the same method calls with the same arguments. This means:
216 You see, even if method arguments used during method prophecy creation look
243 - `ObjectStateToken` or `Argument::which($method, $value)` - checks that the argument method returns
334 they define *predictions* instead of *promises* on method prophecies:
342 The `shouldBeCalled()` method here assigns `CallPrediction` to our method prophecy.
346 predictions. You can assign predictions to method prophecies using the
348 the `shouldBeCalled()` method we used earlier is just a shortcut to:
[all …]
/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest.js78 method: (method || '').toUpperCase(), property in t.open._openArgs
387 var method = null;
390 method = RegExp.$3;
393 req.open(method, url, true);
476 if (!this.method) this.method = canSetHeaders? 'POST' : 'GET';
479 if (this.method == 'GET') {
581 if (!this.method) this.method = 'GET';
639 if (!th.method) th.method = 'POST';
645 if (th.method == 'GET') {
678 if (th.method == 'POST') {
[all …]
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DXcallable.php201 $method = 'writeCharacter';
203 $method = 'writeString';
211 $method = 'write' . ucfirst($type);
216 $method = 'writeFloat';
221 $method = 'writeAll';
225 $callback[1] = $method;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Extensions/
H A DPhptTestCaseTest.php85 ->method('runJob')
104 ->method('runJob')
123 ->method('runJob')
142 ->method('runJob')
201 ->method('runJob')
216 ->method('runJob')
231 ->method('runJob')
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/
H A DAbstractFileDriverTest.php30 …$this->driver->expects($this->any())->method('getExtension')->will($this->returnValue(self::$exten…
38 ->method('findFileForClass')
44 ->method('loadMetadataFromFile')
56 ->method('findFileForClass')
68 ->method('findAllClasses')
/plugin/judge/
H A Dsyntax.php124 $method = $parameter;
127 $method = $parameter;
130 $method = $parameter;
193 $method = $value;
196 $method = $value;
199 $method = $value;
256 if ($method === null) {
257 $method = "diff";
264 … => $type, 'runtime' => $runtime, 'language' => $language, 'judge' => $judge, 'method' => $method);
/plugin/googlepagerank/
H A Dsyntax.php40 list($url,$width,$method) = explode(',',$match);
43 if ( empty($method)) {$method = "style";}
44 return array($url,$width,$method);

12345678910>>...39