Home
last modified time | relevance | path

Searched refs:method (Results 476 – 500 of 972) sorted by path

1...<<11121314151617181920>>...39

/plugin/findologicxmlexport/vendor/jms/serializer/tests/
H A DSerializerBuilderTest.php71 ->method('parse')
136 ->method('createSerializationContext')
155 ->method('createDeserializationContext')
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Twig/
H A DSerializerExtensionTest.php20 ->method('serialize')
44 ->method('serialize')
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md141 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
361 - Implement your own `__clone()` method
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A DREADME.md24 instantiated using its `createInstance` factory method like this:
30 Then we can use the `create` method of the factory to interpret the DocBlock.
32 `getDocComment()` method, such as an object of type `ReflectionClass`, the
33 create method will read that if it exists.
50 The `create` method will yield an object of type `\phpDocumentor\Reflection\DocBlock`
63 // Or use the render method to get a string representation of the Description.
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md62 and call its `resolve` method like this:
80 the `\phpDocumentor\Reflection\FqsenResolver` class' `resolve` method, like this:
152 After you have obtained a Context it is just a matter of passing it along with the `resolve` method
163 the `getFqsen` method to receive a Value Object that represents the complete FQSEN. So that would b…
168 > The resolve method of the TypeResolver only returns object with the interface `Type` and the FQSE…
172 Another example is on how to resolve the FQSEN of a method as can be seen with the `@see` tag in th…
181 `resolve` method of the FQSEN Resolver you will receive an `Fqsen` object that refers to
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md5 * Clearer error message for unexpected method calls (@meridius)
12 * [fixed] Check method predictions only once (@dontub)
39 * Reverted "check method predictions only once" due to it breaking Spies
46 * Check method predictions only once (thanks @dontub)
62 * Added support for detecting @method on interfaces that the class itself implements, or when the s…
70 * Ignored empty method names in invalid `@method` phpdoc
109 * Improved clarity of method call expectation exception (thanks @dantleech)
138 * Added support for internal classes using keywords as method names (thanks @milan)
145 * Spy automatically promotes spied method call to an expected one
162 …* Added an exception when trying to prophesize on a final method instead of ignoring silently (tha…
[all …]
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/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DProphecySubjectPatch.php48 foreach ($node->getMethods() as $name => $method) {
53 if ($method->getReturnType() === 'void') {
54 $method->setCode(
58 $method->setCode(
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php57 foreach ($class->getMethods() as $method) {
58 $code .= $this->generateMethod($method)."\n";
68 $method->getVisibility(),
69 $method->isStatic() ? 'static' : '',
70 $method->returnsReference() ? '&':'',
71 $method->getName(),
73 $this->getReturnType($method)
75 $php .= $method->getCode()."\n";
86 if ($method->hasReturnType()) {
87 return $method->hasNullableReturnType()
[all …]
H A DClassMirror.php99 if (false === $method->isProtected()) {
103 $this->reflectMethodToNode($method, $node);
107 if (0 === strpos($method->getName(), '_')
112 if (true === $method->isFinal()) {
117 $this->reflectMethodToNode($method, $node);
125 foreach ($interface->getMethods() as $method) {
126 $this->reflectMethodToNode($method, $node);
132 $node = new Node\MethodNode($method->getName());
134 if (true === $method->isProtected()) {
138 if (true === $method->isStatic()) {
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DClassNode.php103 public function addMethod(MethodNode $method, $force = false) argument
105 if (!$this->isExtendable($method->getName())){
107 'Method `%s` is not extendable, so can not be added.', $method->getName()
109 … throw new MethodNotExtendableException($message, $this->getParentClass(), $method->getName());
112 if ($force || !isset($this->methods[$method->getName()])) {
113 $this->methods[$method->getName()] = $method;
162 * @param string $method
165 public function isExtendable($method) argument
167 return !in_array($method, $this->unextendableMethods);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DCallPrediction.php46 * @param MethodProphecy $method
50 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
57 $method->getMethodName(),
69 $method->getMethodName(),
70 $method->getArgumentsWildcard(),
71 $method->getMethodName(),
73 ), $method);
82 $method->getMethodName(),
83 $method->getArgumentsWildcard()
84 ), $method);
H A DCallTimesPrediction.php50 * @param MethodProphecy $method
54 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
61 $method->getMethodName(),
73 $method->getMethodName(),
74 $method->getArgumentsWildcard(),
87 $method->getMethodName(),
88 $method->getArgumentsWildcard(),
89 $method->getMethodName(),
100 $method->getMethodName(),
101 $method->getArgumentsWildcard()
[all …]
H A DCallbackPrediction.php53 * @param MethodProphecy $method
55 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
63 call_user_func($callback, $calls, $object, $method);
H A DNoCallsPrediction.php44 * @param MethodProphecy $method
48 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
61 $method->getMethodName(),
62 $method->getArgumentsWildcard(),
66 ), $method, $calls);
H A DPredictionInterface.php31 * @param MethodProphecy $method
36 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method); argument
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
H A DCallbackPromise.php52 * @param MethodProphecy $method
56 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
64 return call_user_func($callback, $args, $object, $method);
H A DPromiseInterface.php30 * @param MethodProphecy $method
34 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
H A DReturnPromise.php41 * @param MethodProphecy $method
45 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
H A DThrowPromise.php65 * @param MethodProphecy $method
69 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-2.2.md45 * Annotating a method with `@deprecated` now has the same effect as annotating it with `@codeCovera…
H A DChangeLog-3.1.md20 * The Clover XML report now contains method visibility information
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DFile.php508 $method['coverage'] = ($method['executedLines'] /
511 $method['coverage'] = 100;
514 $method['crap'] = $this->crap(
515 $method['ccn'],
516 $method['coverage']
542 $method['coverage'] = ($method['executedLines'] /
545 $method['coverage'] = 100;
548 $method['crap'] = $this->crap(
549 $method['ccn'],
550 $method['coverage']
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php71 foreach ($class['methods'] as $methodName => $method) {
72 if ($method['executableLines'] == 0) {
77 $classStatements += $method['executableLines'];
78 $coveredClassStatements += $method['executedLines'];
80 if ($method['coverage'] == 100) {
86 foreach (range($method['startLine'], $method['endLine']) as $line) {
92 $lines[$method['startLine']] = [
93 'ccn' => $method['ccn'],
95 'crap' => $method['crap'],
97 'visibility' => $method['visibility'],

1...<<11121314151617181920>>...39