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:
* - TINYINT
*/
class TinyInt extends AbstractMySqlIntegerCase
{
* {@inheritdoc}
protected function minSignedValue()
return -128;
}
protected function maxSignedValue()
return 127;
protected function maxUnsignedValue()
return 255;
protected function minUnSignedValue()
return 0;