mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
6783adc239
Nesting ternary operators without explicit parentheses is deprecated: // Code like $a ? $b : $c ? $d : $e // should be replaced by (current interpretation) ($a ? $b : $c) ? $d : $e // or (likely intended interpretation) $a ? $b : ($c ? $d : $e)