Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lazy objects #1146

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions releases/8.4/languages/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'new_without_parentheses_description' => 'Properties and methods of a newly instantiated object can now be accessed without wrapping the <code>new</code> expression in parenthesis.',

'new_classes_title' => 'New Classes, Interfaces, and Functions',
'new_lazy_objects' => 'New <a href="/manual/en/language.oop5.lazy-objects.php">Lazy Objects</a>.',
'new_jit_implementation' => 'New JIT implementation based on IR Framework.',
'new_core_functions' => 'New <code>request_parse_body()</code> function.',
'new_bcmath_functions' => 'New <code>bcceil()</code>, <code>bcdivmod()</code>, <code>bcfloor()</code>, and <code>bcround()</code> functions.',
Expand Down
1 change: 1 addition & 0 deletions releases/8.4/languages/fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'new_without_parentheses_description' => 'Les propriétés et méthodes d\'un objet nouvellement instancié peuvent désormais être accessibles sans entourer l\'expression <code>new</code> entre parenthèses.',

'new_classes_title' => 'Nouvelles classes, interfaces et fonctions',
'new_lazy_objects' => 'Nouveaux <a href="/manual/fr/language.oop5.lazy-objects.php">objets à initialisation différée</a>.',
'new_jit_implementation' => 'Nouvelle implémentation JIT basée sur le framework IR.',
'new_core_functions' => 'Nouvelle fonction <code>request_parse_body()</code>.',
'new_bcmath_functions' => 'Nouvelles fonctions <code>bcceil()</code>, <code>bcdivmod()</code>, <code>bcfloor()</code>, et <code>bcround()</code>.',
Expand Down
1 change: 1 addition & 0 deletions releases/8.4/languages/ru.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'new_without_parentheses_description' => 'К свойствам и методам только что инициализированного объекта теперь можно обращаться, не оборачивая выражение <code>new</code> в круглые скобки.',

'new_classes_title' => 'Новые классы, интерфейсы и функции',
'new_lazy_objects' => 'Добавлены <a href="/manual/ru/language.oop5.lazy-objects.php">ленивые объекты</a>.',
'new_jit_implementation' => 'Новая реализация JIT на основе IR Framework.',
'new_core_functions' => 'Добавлена функция <code>request_parse_body()</code>.',
'new_bcmath_functions' => 'Добавлены функции <code>bcceil()</code>, <code>bcdivmod()</code>, <code>bcfloor()</code> и <code>bcround()</code>.',
Expand Down
1 change: 1 addition & 0 deletions releases/8.4/release.inc
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ PHP
<h2 class="php8-h2" id="other_new_things"><?= message('new_classes_title', $lang) ?></h2>
<div class="php8-compare__content php8-compare__content--block">
<ul>
<li><?= message('new_lazy_objects', $lang) ?></li>
<li><?= message('new_jit_implementation', $lang) ?></li>
<li><?= message('new_core_functions', $lang) ?></li>
<li><?= message('new_bcmath_functions', $lang) ?></li>
Expand Down