Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CreditCard.php
Expand Up @@ -51,7 +51,7 @@ class CreditCard extends AbstractValidator
self::INVALID => "Invalid type given. String expected",
self::LENGTH => "The input contains an invalid amount of digits",
self::PREFIX => "The input is not from an allowed institute",
self::SERVICE => "The input seems to be an invalid creditcard number",
self::SERVICE => "The input seems to be an invalid credit card number.",
self::SERVICEFAILURE => "An exception has been raised while validating the input",
);

Expand Down
2 changes: 1 addition & 1 deletion src/File/Md5.php
Expand Up @@ -28,7 +28,7 @@ class Md5 extends Hash
*/
protected $messageTemplates = array(
self::DOES_NOT_MATCH => "File does not match the given md5 hashes",
self::NOT_DETECTED => "A md5 hash could not be evaluated for the given file",
self::NOT_DETECTED => "An md5 hash could not be evaluated for the given file",
self::NOT_FOUND => "File is not readable or does not exist",
);

Expand Down
2 changes: 1 addition & 1 deletion src/File/WordCount.php
Expand Up @@ -28,7 +28,7 @@ class WordCount extends AbstractValidator
* @var array Error message templates
*/
protected $messageTemplates = array(
self::TOO_MUCH => "Too much words, maximum '%max%' are allowed but '%count%' were counted",
self::TOO_MUCH => "Too many words, maximum '%max%' are allowed but '%count%' were counted.",
self::TOO_LESS => "Too less words, minimum '%min%' are expected but '%count%' were counted",
self::NOT_FOUND => "File is not readable or does not exist",
);
Expand Down

0 comments on commit c59b1d0

Please sign in to comment.