Home
last modified time | relevance | path

Searched refs:implode (Results 126 – 150 of 989) sorted by last modified time

12345678910>>...40

/plugin/combo/action/
H A Dstaticresource.php228 header("Cache-Control: " . implode(", ", $cacheControlDirective));
/plugin/combo/vendor/composer/
H A DInstalledVersions.php268 return implode(' || ', $ranges);
H A Dplatform_check.php17 fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
19 echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
23 'Composer detected issues in your platform: ' . implode(' ', $issues),
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfigSet.php381 \implode(', ', $this->configs),
H A DATNDeserializer.php752 $hex = \strtoupper(\bin2hex(\implode(\array_map('chr', $bb))));
/plugin/combo/
H A Dcli.php343 fwrite($fileHandle, implode(",", $header) . PHP_EOL);
400 fwrite($fileHandle, implode(",", $row) . PHP_EOL);
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMeta.php173 $temp[] = implode(",", $subValue);
/plugin/combo/ComboStrap/
H A DHorizontal.php43 LogUtility::warning("The $attributeName attribute is only meant to be used on the following component " . implode(", ", Vertical::COMPONENTS), self::CANONICAL);
58 LogUtility::error("The $attributeName attribute value ($valueWithoutBreakpoint) is not good. It should be one of: " . implode(", ", $possibleValues), self::CANONICAL);
H A DPipelineUtility.php103 $charactersToTrimFromCommand = implode("", self::QUOTES_CHARACTERS);
H A DPluginUtility.php393 return implode('_', $names);
H A DResourceName.php44 return implode(" ", $wordsUc);
H A DSqlite.php168 $columnStatement = implode(", ", $columnsStatement);
H A DSqliteRequest.php144 $errorInfoAsString = implode(", ", $errorInfo);
H A DWikiPath.php1047 $path = implode(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, $names);
H A DHtml.php212 return implode(" ", $newValues);
H A DSearch.php32 $sqlPredicates[] = "(" . implode(" or ", $sqlPatternPredicates) . ")";
34 $sqlPredicate = implode(" and ", $sqlPredicates);
H A DSlug.php45 return strtolower(implode(WikiPath::SLUG_SEPARATOR, $wordsPart));
48 $slug = implode(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, $parts);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php76 return $baseStateStr . '=>[' . \implode(', ', $state->predicates) . ']';
H A DDFAState.php137 $s .= \sprintf('[%s]', \implode(', ', $this->predicates));
/plugin/combo/vendor/symfony/yaml/
H A DInline.php146 return sprintf('{ %s }', implode(', ', $output));
240 return sprintf('[%s]', implode(', ', $output));
249 return sprintf('{ %s }', implode(', ', $output));
278 throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $delimiters)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
296 } elseif (Parser::preg_match('/^(.*?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match)) {
H A DParser.php251 throw new ParseException(sprintf('Circular reference [%s] detected for reference "%s".', implode(', ', array_merge(\array_slice($this->refsBeingParsed, $pos), [$refName])), $refName), $this->currentLineNb + 1, $this->currentLine, $this->filename);
674 return implode("\n", $data);
732 throw new ParseException(sprintf('Circular reference [%s] detected for reference "%s".', implode(', ', array_merge(\array_slice($this->refsBeingParsed, $pos), [$value])), $value), $this->currentLineNb + 1, $this->currentLine, $this->filename);
922 $text = implode("\n", $blockLines);
/plugin/combo/vendor/symfony/process/
H A DPhpExecutableFinder.php56 $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
H A DProcess.php316 $commandline = implode(' ', array_map([$this, 'escapeArgument'], $commandline));
989 return \is_array($this->commandline) ? implode(' ', array_map([$this, 'escapeArgument'], $this->commandline)) : $this->commandline;
1246 throw new LogicException(sprintf('Invalid option "%s" passed to "%s()". Supported options are "%s".', $key, __METHOD__, implode('", "', $existingOptions)));
1512 throw new RuntimeException(sprintf('Unable to kill the process (%s).', implode(' ', $output)));
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php142 return \implode(\array_slice($this->characters, $start, $stop - $start + 1));
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php93 LogUtility::warning("The `children` align attribute ($align) on the box component was apply against more than one inline elements (ie " . implode(", ", $inlineTagFounds) . "). If you don't get what you want use a text align value such as `text-center`");

12345678910>>...40