Skip to content

Commit 4e3a951

Browse files
committed
Uupdate Twig to latest version.
1 parent b6ce69e commit 4e3a951

File tree

336 files changed

+10042
-12604
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+10042
-12604
lines changed

classes/twig.php

+9-5
Original file line numberDiff line numberDiff line change
@@ -202,16 +202,20 @@ function qtype_coderunner_twig_random(Twig\Environment $env, $values = null, $ma
202202
return $values[mt_rand(0, \strlen($values) - 1)];
203203
}
204204
}
205-
if (!twig_test_iterable($values)) {
205+
206+
if (!is_iterable($values)) {
206207
return $values;
207208
}
208-
$values = twig_to_array($values);
209+
210+
$coreExtension = $env->getExtension(Twig\Extension\CoreExtension::class);
211+
$values = $coreExtension->toArray($values);
212+
209213
if (0 === \count($values)) {
210-
throw new RuntimeError('The random function cannot pick from an empty array.');
214+
throw new RuntimeError('The "random" function cannot pick from an empty sequence or mapping.');
211215
}
212216

213-
$keys = array_keys($values);
214-
$key = $keys[mt_rand(0, count($keys) - 1)];
217+
$keys = \array_keys($values);
218+
$key = $keys[mt_rand(0, \count($keys) - 1)];
215219
return $values[$key];
216220
}
217221

vendor/autoload.php

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
// autoload.php @generated by Composer
44

5+
if (PHP_VERSION_ID < 50600) {
6+
if (!headers_sent()) {
7+
header('HTTP/1.1 500 Internal Server Error');
8+
}
9+
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10+
if (!ini_get('display_errors')) {
11+
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12+
fwrite(STDERR, $err);
13+
} elseif (!headers_sent()) {
14+
echo $err;
15+
}
16+
}
17+
trigger_error(
18+
$err,
19+
E_USER_ERROR
20+
);
21+
}
22+
523
require_once __DIR__ . '/composer/autoload_real.php';
624

7-
return ComposerAutoloaderInita94a015043d83dd17aa9648c7dab3aaf::getLoader();
25+
return ComposerAutoloaderInit6a6772df2521c6860a448e9115f2793a::getLoader();

0 commit comments

Comments
 (0)