Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Milan Kocourek committed Feb 19, 2021
1 parent 6b797d7 commit 4dbfe61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Multiplier.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ public function addCopy(?int $number = null, $defaults = []) : ?Container
return $container;
}

private function createComponents(bool $foceValues = false) : void
private function createComponents(bool $forceValues = false) : void
{
$containers = [];
$containerDefaults = $this->createContainer()->getValues('array');

// Components from httpData
if ($this->isFormSubmitted() && !$foceValues) {
if ($this->isFormSubmitted() && !$forceValues) {
foreach ($this->resolver->getValues() as $number => $_) {
$containers[] = $container = $this->addCopy($number);

Expand Down

0 comments on commit 4dbfe61

Please sign in to comment.