Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DDeduplicationHandler.php46 protected $deduplicationStore; variable in Monolog\\Handler\\DeduplicationHandler
65 …* @param string $deduplicationStore The file/path where the deduplication log should be …
72 …public function __construct(HandlerInterface $handler, ?string $deduplicationStore = null, $dedupl… argument
76 …>deduplicationStore = $deduplicationStore === null ? sys_get_temp_dir() . '/monolog-dedup-' . subs…
115 if (!file_exists($this->deduplicationStore)) {
119 $store = file($this->deduplicationStore, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
145 if (!file_exists($this->deduplicationStore)) {
149 $handle = fopen($this->deduplicationStore, 'rw+');
152 …new \RuntimeException('Failed to open file for reading and writing: ' . $this->deduplicationStore);
184 …file_put_contents($this->deduplicationStore, $record['datetime']->getTimestamp() . ':' . $record['…