Skip to content

Commit

Permalink
clean the codes
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrayIterator committed Oct 14, 2023
1 parent 53e769b commit dbb1465
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Benchmark/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,16 @@ public function getBenchmarksRealMemoryUsage() : int
}

/**
* @return array<string, array<string, Interfaces\RecordInterface[]>>
* @return array<string, array<string, RecordInterface[]>>
*/
public function getRecords(): array
{
return $this->records;
}

/**
* @return array<RecordInterface>
*/
public function getAllRecords() : array
{
$records = [];
Expand All @@ -271,7 +274,7 @@ public function clear(): void
}

/**
* @return Traversable<string, array<string, Interfaces\RecordInterface[]>>
* @return Traversable<string, array<string, RecordInterface[]>>
*/
public function getIterator(): Traversable
{
Expand Down

0 comments on commit dbb1465

Please sign in to comment.