Home
last modified time | relevance | path

Searched refs:callable (Results 26 – 50 of 71) sorted by relevance

123

/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/
H A DAsn1MessageQueue.php78 $callable = [$this->pduClass, 'fromAsn1'];
79 if (!\is_callable($callable)) {
80 throw new \RuntimeException(sprintf('The class %s is not callable.', $this->pduClass));
83 return \call_user_func($callable, $message->getMessage());
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DBufferable.php55 * @param mixed $callable Callable.
59 public function newBuffer($callable = null, $size = null); argument
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DConsistency.php243 $callable = function () {
245 …s->function->register_shutdown_function = function ($_callable) use (&$called, $self, &$callable) {
250 ->isEqualTo($callable);
255 ->when($result = SUT::registerShutdownFunction($callable))
H A DXcallable.php245 $callable = new SUT(
251 ->when($result = $callable(7, [4.2], 'foo'))
261 $callable = new SUT(
267 ->when($result = $callable->distributeArguments([7, [4.2], 'foo']))
/plugin/findologicxmlexport/vendor/jms/serializer/src/Builder/
H A DCallbackDriverFactory.php18 public function __construct(callable $callable) argument
20 $this->callback = $callable;
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEventDispatcherInterface.php25 * @param mixed $callable
27 …public function addListener(string $eventName, $callable, ?string $class = null, ?string $format =… argument
H A DEventDispatcher.php50 …public function addListener(string $eventName, $callable, ?string $class = null, ?string $format =… argument
52 $this->listeners[$eventName][] = [$callable, $class, $format, $interface];
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DCallTest.php130 public function getArguments($callable, $arguments) argument
132 return parent::getArguments($callable, $arguments);
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DListens.php87 $callable = function () use (&$called) {
93 ->when($result = $listenable->on('foo', $callable))
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php232 $callable = $this->strictCallables ? $this->prepare(self::STRICT_CALLABLE) : '';
234 …return sprintf($this->prepare($klass, 0, false, true), $name, $callable, $code, $sections, $blocks…
374 $callable = $this->getCallable();
388 …$this->sections[$key] = sprintf($this->prepare(self::SECTION), $key, $callable, $source, $helper, …
558 $callable = $this->getCallable('$filter');
561 …return sprintf($this->prepare(self::FILTER, $level), $method, $filter, $callable, $msg, $this->get…
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFile.php250 * @param mixed $callable Callable.
254 public function newBuffer($callable = null, $size = null) argument
H A DFinder.php573 * @param callable $callable Callback.
576 public function sort($callable) argument
578 $this->_sorts[] = $callable;
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md183 $transformedPromise = $promise->then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null);
235 $promise->done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null);
255 $promise->otherwise(callable $onRejected);
281 $newPromise = $promise->always(callable $onFulfilledOrRejected);
330 $promise->progress(callable $onProgress);
370 $resolver = function (callable
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md217 Provides a read only stream that pumps data from a PHP callable.
219 When invoking the provided callable, the PumpStream will pass the amount of
220 data requested to read to the callable. The callable can choose to ignore
222 returned by the provided callable is buffered internally until drained using
223 the read() function of the PumpStream. The provided callable MUST return
249 public function __construct(StreamInterface $stream, callable $cb)
475 `public static function streamFor(resource|string|null|int|float|bool|StreamInterface|callable|\Ite…
499 - `callable` When a callable is passed, a read-only stream object will be
500 created that invokes the given callable. The callable is invoked with the
501 number of suggested bytes to read. The callable can return any number of
[all …]
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md76 `callable` keyword or type declarations such as `int`, `float`, `string` etc.,
186 The `Hoa\Consistency\Xcallable::distributeArguments` method invokes the callable
193 This is also possible to get a unique hash of the callable:
204 Finally, this is possible to get a reflection instance of the current callable
225 according to the type of the arguments given to the callable, the
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Descape.rst95 used in the ``escape`` call) and the second one must be a valid PHP callable:
105 When called by Twig, the callable receives the Twig environment instance, the
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc181 .`setEndpoint(callable $endpoint)`
454 .`instantiate(Elasticsearch\Transport $transport, callable $endpoint, array $registeredNamespaces)`
/plugin/findologicxmlexport/vendor/hoa/event/
H A DREADME.md92 Because `attach` expects a callable and because Hoa's callable implementation is
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php1186 public function registerUndefinedFilterCallback($callable) argument
1188 $this->filterCallbacks[] = $callable;
1358 public function registerUndefinedFunctionCallback($callable) argument
1360 $this->functionCallbacks[] = $callable;
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php49 * @param callable $callable A valid PHP callable
51 public function setEscaper($strategy, $callable) argument
53 $this->escapers[$strategy] = $callable;
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst100 a serialization context from your callable and use it.
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst274 valid PHP callable) which should return a function (or a filter).
289 If the callable is not able to return a valid function (or filter), it must
568 .. _callback: https://secure.php.net/manual/en/function.is-callable.php
H A Dadvanced.rst129 Creating a filter is as simple as associating a name with a PHP callable::
149 of the filter you will use in templates and the second one is the PHP callable
165 When called by Twig, the PHP callable receives the left side of the filter
814 any valid PHP callable:
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md315 - `then(callable $onFulfilled, callable $onRejected) : PromiseInterface`
319 - `otherwise(callable $onRejected) : PromiseInterface`
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md178 * Support callable typehints (thanks @stof)

123