modifs.mineures sans commentaires
This commit is contained in:
parent
e71936c10a
commit
99c341f6c3
|
@ -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>
|
|
@ -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 = [];
|
||||
|
|
Loading…
Reference in New Issue