modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-09-19 01:07:12 +04:00
parent a5b0d7ac0a
commit db07658392
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php
namespace nur\sery\php\content;
use nur\sery\php\nur_func;
use nur\sery\php\func;
/**
* Class Printer: wrapper autour d'une instance de {@link IContent} qui affiche
@ -25,7 +25,7 @@ class Printer implements IPrintable {
}
function __call($name, $args) {
$content = nur_func::call([$this->content, $name], ...$args);
$content = func::call([$this->content, $name], ...$args);
c::write($content);
}
}