Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
This was accidentally broken in 45cf2a8
  • Loading branch information
jtojnar committed May 14, 2024
1 parent 45cf2a8 commit bfe52eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Multiplier.php
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ protected function isFormSubmitted(): bool
protected function loadHttpData(): void
{
if ($this->isFormSubmitted()) {
/** @var array<mixed> The other types from the union can only be returned when the htmlName argument is passed. https://github.com/nette/forms/pull/333 */
/** @var array<mixed> $httpData The other types from the union can only be returned when the htmlName argument is passed. https://github.com/nette/forms/pull/333 */
$httpData = $this->getForm()->getHttpData();
$httpData = Arrays::get($httpData, $this->getHtmlName(), []);
$this->resolver = new ComponentResolver($httpData ?? [], $this->maxCopies, $this->minCopies);
Expand Down

0 comments on commit bfe52eb

Please sign in to comment.