1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-01 11:30:16 +02: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;
}