Skip to content

Commit

Permalink
docs: fix PHPDocs in View
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr committed May 22, 2024
1 parent d88ad38 commit 93267da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/View/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class View implements RendererInterface
* Cache stats about our performance here,
* when CI_DEBUG = true
*
* @var list<float|string>
* @var list<array{start: float, end: float, view: string}>
*/
protected $performanceData = [];

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

0 comments on commit 93267da

Please sign in to comment.