Skip to content

Commit 0752411

Browse files
Merge branch '4.4' into 5.2
* 4.4: fixed parser Fixed bugs found by psalm [FrameworkBundle] Dont store cache misses on warmup [Cache] skip storing failure-to-save as misses in ArrayAdapter [Validator] Delete obsolete statement in Regex::getHtmlPattern() phpDoc [FrameworkBundle] Remove author comments for configuration and extension [DependencyInjection] Fix "url" env var processor behavior when the url has no path Fixed support for nodes not extending BaseNode add missing queue_name to find(id) in doctrine messenger transport [Serializer] AbstractNormalizer force null for non-optional nullable constructor parameter denormalization when not present in input
2 parents a65d8d3 + 93b5e40 commit 0752411

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Command/LintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ private function displayJson(OutputInterface $output, array $filesInfo)
219219
return min($errors, 1);
220220
}
221221

222-
private function renderException(OutputInterface $output, string $template, Error $exception, string $file = null)
222+
private function renderException(SymfonyStyle $output, string $template, Error $exception, string $file = null)
223223
{
224224
$line = $exception->getTemplateLine();
225225

Mime/WrappedTemplatedEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public function getBcc(): array
182182
*/
183183
public function setPriority(int $priority): self
184184
{
185-
$this->message->setPriority($priority);
185+
$this->message->priority($priority);
186186

187187
return $this;
188188
}

0 commit comments

Comments
 (0)