We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5450270 commit 2d0b193Copy full SHA for 2d0b193
src/Log/Log.php
@@ -242,4 +242,12 @@ public function jsonSerialize(): array
242
"entries" => $this->getEntries()
243
];
244
}
245
+
246
+ /**
247
+ * @inheritDoc
248
+ */
249
+ public function getTitle(): string
250
+ {
251
+ return "Log";
252
+ }
253
src/Log/LogInterface.php
@@ -38,6 +38,13 @@ public function setLogFile(LogFileInterface $logFile): static;
38
*/
39
public function getLogFile(): LogFileInterface;
40
41
42
+ * Get a human-readable title for the log
43
+ *
44
+ * @return string
45
46
+ public function getTitle(): string;
47
48
/**
49
* Parse a log file with a parser
50
*
0 commit comments