Change max weight

This commit is contained in:
Anton Vakhrushev 2017-03-10 06:46:50 +03:00
parent 843f16ae0c
commit d0ab14320c

View File

@ -42,6 +42,6 @@ class BooleanStatus implements ReasonStatusInterface
*/
public function getWeight(): int
{
return $this->value ? 0 : 1;
return $this->value ? 0 : PHP_INT_MAX;
}
}