Home
last modified time | relevance | path

Searched refs:previous (Results 426 – 450 of 556) sorted by last modified time

1...<<11121314151617181920>>...23

/plugin/findologicxmlexport/vendor/hoa/exception/
H A DREADME.md74 * A previous exception (optional).
93 $previous = new Hoa\Exception\Exception('Hello previous.');
94 $exception = new Hoa\Exception\Exception('Hello %s!', 0, 'world', $previous);
106 * {main}: (0) Hello previous.
137 * `commitTransaction` to merge all newly added exceptions in the previous
H A DException.php67 $previous = null argument
69 parent::__construct($message, $code, $arguments, $previous);
H A DGroup.php70 \Exception $previous = null
72 parent::__construct($message, $code, $arguments, $previous);
82 * @param bool $previous Whether raise previous exception if exists.
85 public function raise($previous = false) argument
87 $out = parent::raise($previous);
101 $exception->raise($previous)
H A DIdle.php103 \Exception $previous = null
106 parent::__construct($message, $code, $previous);
219 * @param bool $previous Whether raise previous exception if exists.
222 public function raise($previous = false) argument
248 if (true === $previous &&
249 null !== $previous = $this->getPreviousThrow()) {
252 'Nested exception (' . get_class($previous) . '):' . "\n" .
253 ($previous instanceof self
254 ? $previous->raise(true)
255 : $previous->getMessage());
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DGroup.php71 $previous = new SUT('previous')
73 ->when($result = new SUT($message, $code, $arguments, $previous), $line = __LINE__)
82 ->isIdenticalTo($previous)
H A DIdle.php82 $previous = new SUT('previous'),
83 $exception = new SUT('foo', 0, [], $previous)
88 ->isIdenticalTo($previous);
165 $previous = new SUT('previous'), $previousLine = __LINE__,
166 $exception = new SUT('foo', 0, [], $previous), $line = __LINE__
175 'Nested exception (' . get_class($previous) . '):' . "\n" .
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DREADME.md384 previous element.
404 $buffer->previous();
407 $buffer->previous();
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A DLICENSE13 …ss permission from the Licensor to exercise rights under this License despite a previous violation.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst271 If the previous exclusion strategies are not enough, is possible to use the ``ExpressionLanguageExc…
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlDeserializationVisitor.php71 $previous = libxml_use_internal_errors(true);
88 libxml_use_internal_errors($previous);
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DLookbehind.php77 $previous = $lookbehind->getPrevious()
86 ->variable($previous)
94 $previous = $lookbehind->getPrevious()
103 ->string($previous)
111 $previous = $lookbehind->getPrevious()
120 ->string($previous)
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md575 - Added clearing previous libxml errors [\#688](https://github.com/schmittjoh/serializer/pull/688) …
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst331 identifier directly on previous versions.
487 This recipe is the continuation of the previous one. Even if you store the
492 As you can see in the previous recipe, we reference the template in the exact
H A Dapi.rst490 With the previous configuration, the security policy will only allow usage of
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DLoaderError.php29 public function __construct($message, $lineno = -1, $source = null, \Exception $previous = null) argument
31 parent::__construct($message, $lineno, $source, $previous, false);
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedFilterError.php23 …n __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $previous = null) argument
25 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedFunctionError.php23 …n __construct($message, $functionName, $lineno = -1, $filename = null, \Exception $previous = null) argument
25 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedTagError.php23 …nction __construct($message, $tagName, $lineno = -1, $filename = null, \Exception $previous = null) argument
25 parent::__construct($message, $lineno, $filename, $previous);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DException.php38 public function __construct($message = '', $code = 0, Exception $previous = null) argument
40 parent::__construct($message, $code, $previous);
H A DExceptionWrapper.php30 protected $previous; variable in PHPUnit_Framework_ExceptionWrapper
52 $this->previous = new self($e->getPrevious());
69 return $this->previous;
83 if ($this->previous) {
84 $string .= "\nCaused by\n" . $this->previous;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTeamCity.php346 $previous = $e->getPrevious();
348 while ($previous) {
350 PHPUnit_Framework_TestFailure::exceptionToString($previous) . "\n" .
351 PHPUnit_Util_Filter::getFilteredStacktrace($previous);
353 $previous = $previous->getPrevious();
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsSpecificationExamples.yml1061 - The previous entry is equal to the following one.
1095 'The previous entry is equal to the following one.',
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG825 variables are now automatically escaped. You can revert to the previous
839 …* removed 'is_escaper' option for filters (a left over from the previous version) -- you must use …
1015 This release is NOT backward compatible with the previous releases.
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5 …olor:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{fl…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md94 …b.com/sebastianbergmann/phpunit/issues/1999): Handler is inherited from previous custom option wit…

1...<<11121314151617181920>>...23