Home
last modified time | relevance | path

Searched refs:deprecations (Results 1 – 17 of 17) sorted by path

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md100 * Fix deprecations with guzzle/psr7 version 1.4
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md10 - PHP 8.1 deprecations in the `Cookie` class.
14 - Add `@return` and `@param` type annotations to Cookie class to avoid deprecations in PHP 8.1.
/plugin/combo/vendor/symfony/deprecation-contracts/
H A DREADME.md9 the triggered deprecations can be caught and logged for later discovery, both on dev and prod environments.
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js331 var deprecations = {};
337 if (!deprecations[name]) {
339 deprecations[name] = true;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js.map1 … error output stream. Useful for libraries that need to warn users of deprecations or recovering f…
H A Dbundle.js.map1deprecations = {};\n\n function deprecateSimple(name, msg) {\n if (hooks.deprecationHand…
/plugin/edittable/lib/
H A Dhandsontable.full.js7451 var deprecations = {};
7457 if (!deprecations[name]) {
7459 deprecations[name] = true;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DMigrationNamespace.asciidoc21 * <<Elasticsearch_Namespaces_MigrationNamespacedeprecations_deprecations,`deprecations()`>>
26 .`deprecations(array $params = [])`
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DMigrationNamespace.php39 public function deprecations(array $params = []) function in Elasticsearch\\Namespaces\\MigrationNamespace
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md197 * Added `symfony/deprecation-contracts` package to handle deprecations [#1823](https://github.com/ruflin/Elastica/pull/1823)
287 * Require phpunit >= v7.5, fixes deprecations in with PHP 7.3
541 - Remove [several parse field](https://github.com/elastic/elasticsearch/pull/26711) deprecations in query builders [#1382](https://github.com/ruflin/Elastica/pull/1382)
/plugin/elasticsearch/vendor/symfony/deprecation-contracts/
H A DREADME.md9 the triggered deprecations can be caught and logged for later discovery, both on dev and prod environments.
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md277 - Solve php 7.2 deprecations [\#860](https://github.com/schmittjoh/serializer/pull/860) ([goetas](h…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst23 $deprecations = new \Twig\Util\DeprecationCollector($twig);
25 print_r($deprecations->collectDir(__DIR__.'/templates'));
37 However, this code won't find all deprecations (like using deprecated some Twig
41 $deprecations = [];
42 set_error_handler(function ($type, $msg) use (&$deprecations) {
44 $deprecations[] = $msg;
50 print_r($deprecations);
/plugin/findologicxmlexport/vendor/twig/twig/src/Util/
H A DDeprecationCollector.php26 private $deprecations; variable in Twig\\Util\\DeprecationCollector
61 $this->deprecations = [];
75 $deprecations = $this->deprecations;
76 $this->deprecations = [];
78 return $deprecations;
87 $this->deprecations[] = $msg;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DEnvironmentTest.php32 private $deprecations = []; variable in Twig_Tests_EnvironmentTest
365 $this->deprecations = [];
370 $this->assertCount(1, $this->deprecations);
371 …hod in the "Twig_Tests_EnvironmentTest_Extension_WithGlobals" extension ', $this->deprecations[0]);
437 $this->deprecations = [];
442 $this->assertCount(1, $this->deprecations);
443 …nWithDeprecationInitRuntime" extension is deprecated since version 1.23.', $this->deprecations[0]);
451 $this->deprecations[] = $msg;
463 $this->deprecations = [];
469 $this->assertCount(1, $this->deprecations);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Util/
H A DDeprecationCollectorTest.php27 $deprecations = $collector->collect(new Twig_Tests_Util_Iterator());
29 …s->assertEquals(['Twig Function "deprec" is deprecated in deprec.twig at line 1.'], $deprecations);