8000 [Validator] Fixed typo in Image constraint · Seldaek/symfony@522adde · GitHub
[go: up one dir, main page]

Skip to content

Commit 522adde

Browse files
committed
[Validator] Fixed typo in Image constraint
1 parent 227eebc commit 522adde

File tree

1 file changed

+1
-1
lines changed
  • src/Symfony/Component/Validator/Constraints

1 file changed

+1
-1
lines changed

src/Symfony/Component/Validator/Constraints/Image.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ class Image extends File
2828
public $sizeNotDetectedMessage = 'The size of the image could not be detected';
2929
public $maxWidthMessage = 'The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px';
3030
public $minWidthMessage = 'The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px';
31-
public $maxHeightMessage = 'The image height is too big ({{ height }}px). Allowed maximum width is {{ max_eight }}px';
31+
public $maxHeightMessage = 'The image height is too big ({{ height }}px). Allowed maximum width is {{ max_height }}px';
3232
public $minHeightMessage = 'The image width is too small ({{ height }}px). Minimum height expected is {{ min_height }}px';
3333
}

0 commit comments

Comments
 (0)
0