1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-06 22:00:38 +01:00

changed exception message

This commit is contained in:
Oliver Vogel 2014-07-26 10:18:39 +02:00
parent adc7881840
commit 0a3e460184

View File

@ -120,7 +120,7 @@ class Argument
case 'digit':
$fail = ! $this->isDigit($value);
$message = sprintf('%s accepts only digit values as argument %d.', $this->getCommandName(), $this->key + 1);
$message = sprintf('%s accepts only integer values as argument %d.', $this->getCommandName(), $this->key + 1);
break;
}