for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mbright\Validation\Rule\Validate\MySql;
/**
* Validates that data can be inserted into one of the following column types:
* - MEDIUMINT
*/
class MediumInt extends AbstractMySqlIntegerCase
{
* {@inheritdoc}
protected function minSignedValue()
return -8388608;
}
protected function maxSignedValue()
return 8388607;
protected function maxUnsignedValue()
return 16777215;
protected function minUnSignedValue()
return 0;