Commit 14b71e38 authored by Franco Fichtner's avatar Franco Fichtner

mvc: fix for nasty syntax error, whoops

parent 944798c4
......@@ -46,13 +46,13 @@ class IntegerField extends BaseField
* maximum value for this field
* @var integer
*/
private $maximum_value = PHP_INT_MAX ;
private $maximum_value = PHP_INT_MAX;
/**
* minimum value for this field
* @var integer
*/
private $minimum_value = PHP_INT_MAX*-1 ;
private $minimum_value = PHP_INT_MIN;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment