Home
last modified time | relevance | path

Searched refs:method (Results 201 – 225 of 972) sorted by relevance

12345678910>>...39

/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Signature/
H A DSignatureInterface.php23 * @param string $method
27 public function getSignature(UriInterface $uri, array $params, $method = 'POST'); argument
H A DSignature.php53 * @param string $method
57 public function getSignature(UriInterface $uri, array $params, $method = 'POST') argument
76 $baseString = strtoupper($method) . '&';
/plugin/webdav/vendor/sabre/http/lib/
H A DRequestInterface.php24 * @param string $method
27 function setMethod($method); argument
H A DSapi.php110 $method = null;
127 $method = $value;
194 $r = new Request($method, $url, $headers);
/plugin/davcal/vendor/sabre/http/lib/
H A DRequestInterface.php24 * @param string $method
27 function setMethod($method); argument
H A DSapi.php102 $method = null;
119 $method = $value;
186 $r = new Request($method, $url, $headers);
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md77 the `isKeyword` method will tell you if they are reserved keywords: Not only
91 `Hoa\Consistency\Consistency::isIdentifier` method to check an identifier is
142 The API also provides the `load` method to force the load of an entity,
165 * `'class::method'` as a string,
166 * `'class', 'method'` as 2 string arguments,
167 * `$object, 'method'` as 2 arguments,
170 * `['class', 'method']` as an array of strings,
171 * `[$object, 'method']` as an array.
222 When the object is set but not the method, the latter will be deduced if
226 `writeInteger`, `writeString`, `writeArray` etc. method will be used. If the
[all …]
/plugin/remotelistnamespace/
H A Dplugin.info.txt5 name listNamespace XMLRPC method
6 desc This plugins just adds an XMLRPC method called remotelistnamespace.listNamespace
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A Dphpstan.neon6 - '#Call to static method performRequest\(\) on trait#'
9 - '#Call to method getCode\(\) on an unknown class JsonException#'
/plugin/chat/
H A Dtw-sack.js11 this.method = "POST";
128 if (this.method == "GET") {
130 this.xmlhttp.open(this.method, totalurlstring, true);
132 this.xmlhttp.open(this.method, this.requestFile, true);
/plugin/fckg/fckeditor/editor/dialog/
H A Dtw-sack.js11 this.method = "POST";
132 if (this.method == "GET") {
134 this.xmlhttp.open(this.method, totalurlstring, true);
136 this.xmlhttp.open(this.method, this.requestFile, true);
/plugin/fckg/fckeditor/
H A Dtw-sack.js11 this.method = "POST";
132 if (this.method == "GET") {
134 this.xmlhttp.open(this.method, totalurlstring, true);
136 this.xmlhttp.open(this.method, this.requestFile, true);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriverNavigation.php123 * @param mixed $method
126 protected function dispatch($method, ...$arguments) argument
132 $this->dispatcher->dispatch($method, $arguments);
/plugin/idoit/
H A DREADME.md23 "method": "cmdb.object.read",
34 * **method**: The method string as defined in `CMDB/Methods.class.php` of the PHP API
69 "method": "cmdb.object.read",
90 "method": "cmdb.object.read",
108 "method": "cmdb.category.read",
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dmagic_call.test14 public function __call($method, $arguments)
16 if ('foo' === $method) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
H A DReturnPromise.php41 * @param MethodProphecy $method
45 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
H A DReturnArgumentPromise.php53 * @param MethodProphecy $method
57 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
/plugin/structodt/
H A Daction.php96 $method = 'action_' . $INPUT->str('action');
97 if (method_exists($this, $method)) {
98 call_user_func([$this, $method]);
123 $method = 'render' . strtoupper($ext);
124 $rendered_pages[] = $helper->$method($template, $row);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/
H A DDebugCodeSniff.php57 $method = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
59 $data = array($tokens[$method]['content']);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php257 public function __call($method, $arguments) argument
259 if ('magicCall' !== $method) {
266 public static function __callStatic($method, $arguments) argument
268 if ('magicStaticCall' !== $method) {
/plugin/facebookalbum/
H A Dfacebook.php524 * @param String $method the http method (default 'GET')
529 protected function _graph($path, $method='GET', $params=array()) { argument
530 if (is_array($method) && empty($params)) {
531 $params = $method;
532 $method = 'GET';
534 $params['method'] = $method; // method override as we always do a POST
787 protected function getApiUrl($method) { argument
850 if (isset($READ_ONLY_CALLS[strtolower($method)])) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dreturn_type_declarations_static_method.phpt45 …throw new PHPUnit_Framework_MockObject_BadMethodCallException('Static method "bar" cannot be invok…
53 public function method()
57 return call_user_func_array(array($expects, 'method'), func_get_args());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DIMipPluginTest.php28 $message->method = 'REPLY';
125 'Content-Type: text/calendar; charset=UTF-8; method=REQUEST',
167 'Content-Type: text/calendar; charset=UTF-8; method=CANCEL',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php88 * @param string $method HTTP method to use
96 public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface argument
110 $method,
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconfig-hash.asciidoc8 method, which accepts an array of configurations and returns a fully built
11 Array keys correspond to the method name, for example `retries` key corresponds
12 to `setRetries()` method.

12345678910>>...39