Skip to content

Commit 1314ad2

Browse files
authored
100 instead of 1000 on the exception raised when the price is below 100. (#6)
1 parent 6446264 commit 1314ad2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Invoice/InvoiceItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function setPrice($price)
5959
}
6060
else
6161
{
62-
throw new Exception('Price must be a number and greather than 1000 !');
62+
throw new Exception('Price must be a number and greather than 100 !');
6363
}
6464
}
6565

0 commit comments

Comments
 (0)