We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6560c0 commit d852da6Copy full SHA for d852da6
2 files changed
src/Directive/ConstraintErrorMessage.php
@@ -53,7 +53,7 @@ public function getViewAttr(): array
53
private function getConstraintIdFromClass(string $class): string
54
{
55
if (!class_exists($class)) {
56
- throw new \InvalidArgumentException($class.' is not a class and therefore doesn\'t impliment '.ConstraintInterface::class);
+ throw new \InvalidArgumentException($class.' is not a class and therefore doesn\'t implement '.ConstraintInterface::class);
57
}
58
59
if (array_key_exists(ConstraintInterface::class, class_implements($class))) {
tests/Fixtures/.gitignore
@@ -0,0 +1,2 @@
1
+cache
2
+logs
0 commit comments