Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
danigargar committed Feb 12, 2024
1 parent 793a918 commit fe3a4c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Domain/Model/Helper/DateTimeHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static function createOrFix($value = null, $defaultValue = null)
return self::createFromString($value);
}

throw new \Exception('Unkown format');
throw new \Exception('Unknown format');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Infrastructure/Persistence/Doctrine/LoggableMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private function logChanges(string $direction)

foreach ($this->queries as $query) {
$event = new EntityWasUpdated(
'unkown',
'unknown',
0,
[
'query' => $query,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public static function append(string $operator, Criteria $baseCriteria, Criteria
{
$operator = strtoupper($operator);
if (!in_array($operator, [CompositeExpression::TYPE_OR, CompositeExpression::TYPE_AND])) {
throw new \InvalidArgumentException('Unkown operator ' . $operator);
throw new \InvalidArgumentException('Unknown operator ' . $operator);
}

/** @var CompositeExpression $expression */
Expand Down

0 comments on commit fe3a4c8

Please sign in to comment.