Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DMongoDBFormatter.php28 private $maxNestingLevel; variable in Monolog\\Formatter\\MongoDBFormatter
33 …* @param int $maxNestingLevel 0 means infinite nesting, the $record itself is level 1, $re…
36 public function __construct(int $maxNestingLevel = 3, bool $exceptionTraceAsString = true) argument
38 $this->maxNestingLevel = max($maxNestingLevel, 0);
78 if ($this->maxNestingLevel > 0 && $nestingLevel > $this->maxNestingLevel) {
/plugin/commonmark/vendor/league/commonmark/src/
H A DDocParser.php