Home
last modified time | relevance | path

Searched refs:allowInlineLineBreaks (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLineFormatter.php31 protected $allowInlineLineBreaks; variable in Monolog\\Formatter\\LineFormatter
40 …* @param bool $allowInlineLineBreaks Whether to allow inline line breaks in log entries
43 …nstruct(?string $format = null, ?string $dateFormat = null, bool $allowInlineLineBreaks = false, b… argument
46 $this->allowInlineLineBreaks = $allowInlineLineBreaks;
56 $this->allowInlineLineBreaks = true;
62 public function allowInlineLineBreaks(bool $allow = true): self function in Monolog\\Formatter\\LineFormatter
64 $this->allowInlineLineBreaks = $allow;
178 if ($this->allowInlineLineBreaks) {
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md248 * Fixed support for allowInlineLineBreaks in LineFormatter when formatting exception backtraces
436 …atter now strips newlines by default because this was a bug, set $allowInlineLineBreaks to true if…