Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
H A DFileUploadQuestion.php34 public $maxFiles; variable in Google\\Service\\Forms\\FileUploadQuestion
71 public function setMaxFiles($maxFiles) argument
73 $this->maxFiles = $maxFiles;
80 return $this->maxFiles;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRotatingFileHandler.php36 protected $maxFiles; variable in Monolog\\Handler\\RotatingFileHandler
48 * @param int $maxFiles The maximal amount of files to keep (0 means unlimited)
52 …public function __construct(string $filename, int $maxFiles = 0, $level = Logger::DEBUG, bool $bub… argument
55 $this->maxFiles = $maxFiles;
138 if (0 === $this->maxFiles) {
148 if ($this->maxFiles >= count($logFiles)) {
158 foreach (array_slice($logFiles, $this->maxFiles) as $file) {