Skip to content

Commit 76ee413

Browse files
committed
CS
1 parent 7d00d76 commit 76ee413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ux.symfony.com/src/Service/UxPackageRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public function find(string $name): UxPackage
210210
}
211211
}
212212

213-
throw new \InvalidArgumentException(sprintf('Unknown package "%s"', $name));
213+
throw new \InvalidArgumentException(sprintf('Unknown package "%s".', $name));
214214
}
215215

216216
public function count(): int
@@ -227,6 +227,6 @@ public function findByRoute(string $route): UxPackage
227227
}
228228
}
229229

230-
throw new \InvalidArgumentException(sprintf('Could not find a package for the current route "%s"', $route));
230+
throw new \InvalidArgumentException(sprintf('Could not find a package for the current route "%s".', $route));
231231
}
232232
}

0 commit comments

Comments
 (0)