Lines Matching refs:keys
60 $keys = array_reduce(
62 function ($keys, Column $col) {
63 if (!in_array($col->getLabel(), $keys, true)) {
64 return $keys;
66 $index = array_search($col->getLabel(), $keys, true);
67 $keys[$index] = $col->getFullQualifiedLabel();
68 return $keys;
73 $keysAt = array_map(static fn($key) => "@@$key@@", $keys);
74 $keysHash = array_map(static fn($key) => "##$key##", $keys);
84 $text = $this->evaluateIfNotEmptyTags($text, $keys, $flatValues);
95 * @param string[] $keys The array of qualified headers
100 protected function evaluateIfNotEmptyTags($text, $keys, $values)
104 function ($matches) use ($keys, $values) {
106 $index = array_search($blockKey, $keys, true);