| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
| D | SwiftMailerHandler.php | 52 protected function send(string $content, array $records): void argument 54 $this->mailer->send($this->buildMessage($content, $records)); 71 * @param array $records Log records that formed the content 76 protected function buildMessage(string $content, array $records): Swift_Message argument 83 $message = ($this->messageTemplate)($content, $records); 87 $record = reset($records); 91 if ($records) { 93 $message->setSubject($subjectFormatter->format($this->getHighestRecord($records)));
|
| D | MailHandler.php | 29 public function handleBatch(array $records): void argument 33 foreach ($records as $record) { 51 * @param array $records the array of log records that formed this content 55 abstract protected function send(string $content, array $records): void; argument 69 protected function getHighestRecord(array $records): array argument 72 foreach ($records as $record) {
|
| D | WhatFailureGroupHandler.php | 48 public function handleBatch(array $records): void argument 52 foreach ($records as $record) { 56 $records = $processed; 61 $handler->handleBatch($records);
|
| D | FallbackGroupHandler.php | 51 public function handleBatch(array $records): void argument 55 foreach ($records as $record) { 59 $records = $processed; 64 $handler->handleBatch($records);
|
| D | ElasticsearchHandler.php | 115 public function handleBatch(array $records): void argument 117 $documents = $this->getFormatter()->formatBatch($records); 124 * @param array[] $records Records + _index/_type keys 127 protected function bulkSend(array $records): void argument 134 foreach ($records as $record) {
|
| D | LogglyHandler.php | 127 public function handleBatch(array $records): void argument 131 $records = array_filter($records, function ($record) use ($level) { 135 if ($records) { 136 $this->send($this->getFormatter()->formatBatch($records), static::ENDPOINT_BATCH);
|
| D | GroupHandler.php | 83 public function handleBatch(array $records): void argument 87 foreach ($records as $record) { 91 $records = $processed; 95 $handler->handleBatch($records);
|
| D | TestHandler.php | 76 protected $records = []; variable in Monolog\\Handler\\TestHandler 89 return $this->records; 97 $this->records = []; 208 $this->records[] = $record;
|
| D | BrowserConsoleHandler.php | 37 protected static $records = []; variable in Monolog\\Handler\\BrowserConsoleHandler 63 static::$records[] = $record; 83 if (count(static::$records)) { 110 static::$records = []; 175 foreach (static::$records as $record) {
|
| D | HandlerInterface.php | 62 * @param array $records The records to handle (an array of record arrays) 66 public function handleBatch(array $records): void; argument
|
| D | Handler.php | 24 public function handleBatch(array $records): void argument 26 foreach ($records as $record) {
|
| D | AmqpHandler.php | 84 public function handleBatch(array $records): void argument 87 parent::handleBatch($records); 92 foreach ($records as $record) {
|
| D | NativeMailerHandler.php | 114 protected function send(string $content, array $records): void argument 129 if ($records) { 131 $subject = $subjectFormatter->format($this->getHighestRecord($records));
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/ |
| D | JsonFormatter.php | 100 public function formatBatch(array $records): string argument 104 return $this->formatBatchNewlines($records); 108 return $this->formatBatchJson($records); 127 protected function formatBatchJson(array $records): string argument 129 return $this->toJson($this->normalize($records), true); 138 protected function formatBatchNewlines(array $records): string argument 144 array_walk($records, function (&$value, $key) use ($instance) { 149 return implode("\n", $records);
|
| D | FormatterInterface.php | 36 * @param array $records A set of records to format 41 public function formatBatch(array $records); argument
|
| D | NormalizerFormatter.php | 61 public function formatBatch(array $records) argument 63 foreach ($records as $key => $record) { 64 $records[$key] = $this->format($record); 67 return $records;
|
| D | FluentdFormatter.php | 79 public function formatBatch(array $records): string argument 82 foreach ($records as $record) {
|
| D | ChromePHPFormatter.php | 73 public function formatBatch(array $records) argument 77 foreach ($records as $record) {
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
| D | ChromeUXReport.php | 40 public $records; variable in Google\\Service\\ChromeUXReport 61 'records', 65 'path' => 'v1/records:queryRecord',
|
| /plugin/authgooglesheets/vendor/psr/log/Psr/Log/Test/ |
| D | TestLogger.php | 62 public $records = []; variable in Psr\\Log\\Test\\TestLogger 78 $this->records[] = $record; 144 $this->records = [];
|
| /plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/ |
| D | TestLogger.php | 62 public $records = []; variable in Psr\\Log\\Test\\TestLogger 78 $this->records[] = $record; 144 $this->records = [];
|
| /plugin/authssocas/vendor/psr/log/Psr/Log/Test/ |
| H A D | TestLogger.php | 62 public $records = []; variable in Psr\\Log\\Test\\TestLogger 78 $this->records[] = $record; 144 $this->records = [];
|
| /plugin/pureldap/vendor/psr/log/Psr/Log/Test/ |
| H A D | TestLogger.php | 62 public $records = []; variable in Psr\\Log\\Test\\TestLogger 78 $this->records[] = $record; 144 $this->records = [];
|
| /plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/ |
| D | TestLogger.php | 62 public $records = []; variable in Psr\\Log\\Test\\TestLogger 78 $this->records[] = $record; 144 $this->records = [];
|
| /plugin/authgooglesheets/vendor/monolog/monolog/ |
| D | CHANGELOG.md | 8 …ord`](src/Monolog/LogRecord.php) interface that can be used to type-hint records like `array|\Mono… 19 * Fixed handling of records going over the max Telegram message length (#1616) 54 …fault json encoding flags, to avoid dropping entire context data or even records due to an invalid… 56 * Added RedisPubSubHandler to log records to a Redis channel using PUBLISH 88 * Fixed ElasticsearchHandler swallowing exceptions details when failing to index log records 92 * Fixed FilterHandler triggering a notice when handleBatch was filtering all records passed to it 104 …* Fixed type error in BrowserConsoleHandler when the context array of log records was not associat… 110 …r which works like the WhatFailureGroupHandler but stops dispatching log records as soon as one ha… 120 …* Added OverflowHandler which will only flush log records to its nested handler when reaching a ce… 121 …* Added TelegramBotHandler to log records to a [Telegram](https://core.telegram.org/bots/api) bot … [all …]
|