Skip to content

Commit 93267da

Browse files
committed
docs: fix PHPDocs in View
1 parent d88ad38 commit 93267da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/View/View.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class View implements RendererInterface
8686
* Cache stats about our performance here,
8787
* when CI_DEBUG = true
8888
*
89-
* @var list<float|string>
89+
* @var list<array{start: float, end: float, view: string}>
9090
*/
9191
protected $performanceData = [];
9292

@@ -491,7 +491,7 @@ public function include(string $view, ?array $options = null, $saveData = true):
491491
* Returns the performance data that might have been collected
492492
* during the execution. Used primarily in the Debug Toolbar.
493493
*
494-
* @return list<float|string>
494+
* @return list<array{start: float, end: float, view: string}>
495495
*/
496496
public function getPerformanceData(): array
497497
{

0 commit comments

Comments
 (0)