Home
last modified time | relevance | path

Searched refs:methods (Results 476 – 500 of 582) sorted by last modified time

1...<<11121314151617181920>>...24

/plugin/findologicxmlexport/vendor/hoa/math/
H A DREADME.md130 and `addConstant` methods. Thus, we will add the `rand` function (with 2
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md482 - SimpleObjectProxy is not implement abstract methods of Proxy class [\#287](https://github.com/sch…
760 - Exclude annotation not preventing attempt to find public methods when using AccessType [\#367](ht…
783 - \#367 Exclude annotation not preventing attempt to find public methods when using AccessType [\#3…
869 - Add toArray and fromArray methods to the serializer [\#435](https://github.com/schmittjoh/seriali…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DIteratorHandler.php22 $methods = [];
25 $methods[] = [
32 $methods[] = [
41 $methods[] = [
48 $methods[] = [
56 return $methods;
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst337 checks like allowed methods on objects).
H A Dadvanced.rst494 The parsing process is simplified thanks to a bunch of methods you can call
542 The compiler implements a fluid interface and provides methods that helps the
666 empty implementations for all methods:
772 The ``getOperators()`` methods lets you add new operators. Here is how to add
816 * **functions/static methods**: Simple to implement and fast (used by all Twig
822 * **object methods**: More flexible and required if your runtime code depends
825 The simplest way to use methods is to define them on the extension itself::
H A Dapi.rst121 variables (variables and or attributes/methods that do not exist) and
193 methods::
201 When using the ``setPaths()``, ``addPath()``, and ``prependPath()`` methods,
203 methods act on the "main" namespace)::
474 unsafe attributes and methods is prohibited. The sandbox security is managed
477 tags, filters, properties, and methods::
481 $methods = [
488 $policy = new \Twig\Sandbox\SecurityPolicy($tags, $filters, $methods, $properties, $functions);
492 able to call the ``getTitle()`` and ``getBody()`` methods on ``Article``
H A Ddeprecated.rst135 methods are deprecated, use
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DTemplate.php596 $methods = [];
601 $methods[] = $refMethod->name;
605 $methods = get_class_methods($object);
608 sort($methods);
612 foreach ($methods as $method) {
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A DREADME.md51 whose methods can be queried:
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php1494 * @param array $methods
1500 protected function createPartialMock($originalClassName, array $methods) argument
1507 ->setMethods(empty($methods) ? null : $methods)
1515 …* @param array|null $methods When provided, only methods whose names are in the ar…
1540 $methods,
1580 * @param array $methods
1596 $methods,
1650 * @param array $methods
1656 …FromWsdl($wsdlFile, $originalClassName = '', $mockClassName = '', array $methods = [], $callOrigin… argument
1667 $methods,
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php162 if (!is_array($methods) && !is_null($methods)) {
226 if ($methods != array_unique($methods)) {
258 $methods,
397 $methods,
569 $methods,
587 * @param array $methods
618 if (empty($methods) || in_array($name, $methods)) {
791 if (is_array($methods) && empty($methods) &&
797 $methods = [];
1298 $methods = [];
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md8 …the Fully Qualified Structural Element Name (FQSEN). Using this it is possible to refer to methods,
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md8 * Ability to double Throwable, or methods that extend it (@ciaranmcnulty)
9 * [fixed] Doubling methods where class has additional arguments to interface (@webimpress)
10 * [fixed] Doubling methods where arguments are nullable but default is not null (@webimpress)
11 * [fixed] Doubling magic methods on parent class (@dsnopek)
44 * Allow PHP5 keywords methods generation on PHP7 (thanks @bycosta)
81 * Add __invoke to allowed reflectable methods list (thanks @ftrrtf)
87 * Fix phpdoc for magic methods (thanks @Tobion)
89 * Prevent final methods from being manually extended (thanks @kamioftea)
112 * Support for mocking classes with methods that return references (thanks @edsonmedina)
116 * Magic methods are now filtered for keywords (thanks @seagoj)
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-2.2.md16 …de-coverage/issues/370): Confusing statistics for source file that declares a class without methods
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php945 $methods = $class->getMethods();
956 foreach ($methods as $method) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D498.phpt2 GH-498: The test methods won't be run if a dataProvider throws Exception and --group is added in co…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/Trac/
H A D684.phpt2 #684: Unable to find test class when no test methods exists
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md27 `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG179 * exposed a way to access template data and methods in a portable way
202 …* improved debugging with Twig_Sandbox_SecurityError exceptions for disallowed methods and propert…
238 * marked the following methods as being internals on Twig_Environment:
402 …* made ignoreStrictCheck in Template::getAttribute() works with __call() methods throwing BadMetho…
780 * fixed duplicate call of methods when using the sandbox
880 …* added support for is*() methods for attributes (foo.bar now looks for foo->getBar() or foo->isBa…
894 * fixed subscript expressions when calling __call() (methods now keep the case)
990 * improved the filter system to allow object methods to be used as filters
/plugin/findologicxmlexport/vendor/webmozart/assert/
H A DREADME.md14 your methods. With these assertions, you can greatly reduce the amount of coding
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DClassNode.php32 private $methods = array(); variable in Prophecy\\Doubler\\Generator\\Node\\ClassNode
100 return $this->methods;
112 if ($force || !isset($this->methods[$method->getName()])) {
113 $this->methods[$method->getName()] = $method;
119 unset($this->methods[$name]);
129 return $this->hasMethod($name) ? $this->methods[$name] : null;
139 return isset($this->methods[$name]);
/plugin/orgapp/
H A DCOPYING310 "Installation Information" for a User Product means any methods,
/plugin/gplusone/
H A DCOPYING310 "Installation Information" for a User Product means any methods,
/plugin/barcode/
H A DCOPYING310 "Installation Information" for a User Product means any methods,
/plugin/pgpinlinesupport/
H A DLICENSE310 "Installation Information" for a User Product means any methods,

1...<<11121314151617181920>>...24