Skip to content

Commit dcc33b3

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: [Profiler] relax return type for memory data collector Fix param annotation in HttpKernelBrowser [Cache] fix compat with apcu < 5.1.10 Expand FormView key to include int [PropertyInfo] PhpStan extractor nested object fix [Console] Fix autocompletion of argument with default value Run `open_basedir` tests in separate processes
2 parents fcb1536 + 13303cf commit dcc33b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DataCollector/MemoryDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function getMemory(): int
5858
return $this->data['memory'];
5959
}
6060

61-
public function getMemoryLimit(): int
61+
public function getMemoryLimit(): int|float
6262
{
6363
return $this->data['memory_limit'];
6464
}

HttpKernelBrowser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ protected function filterFiles(array $files): array
188188
/**
189189
* {@inheritdoc}
190190
*
191-
* @param Request $request
191+
* @param Response $response
192192
*/
193193
protected function filterResponse(object $response): DomResponse
194194
{

0 commit comments

Comments
 (0)