modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-08-27 10:10:19 +04:00
parent e71936c10a
commit 99c341f6c3
2 changed files with 2 additions and 17 deletions

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PhpTestFrameworkVersionCache">
<tools_cache>
<tool tool_name="PHPUnit">
<cache>
<versions>
<info id="Local/home/jclain/wop/php/nur-sery/vendor/autoload.php" version="9.6.20" />
</versions>
</cache>
</tool>
</tools_cache>
</component>
</project>

View File

@ -375,12 +375,11 @@ class CTable extends ComponentPrintable implements IParametrable {
if (!func::_call($filterCtx, [$row, $this->rowKey, $this->rowIndex])) return null;
}
if ($mapCtx !== null) {
$row = func::_call($mapCtx, [$row, $this->rowKey, $this->rowIndex]);
} elseif ($map !== null) {
# si la valeur est séquentielle, c'est une clé dans $row
# si la valeur est associative et que c'est une fonction, elle est appelée
# avec la valeur
$map = func::_call($mapCtx, [$row, $this->rowKey, $this->rowIndex]);
}
if ($map !== null) {
$row = A::with($row);
$index = 0;
$mapped = [];