phpmyadmin/libraries/StringTypeAbstract.php
Hugues Peccatte 43642077b1 Rename PMA_List object as PMA\libraries\ListAbstract.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-01 21:30:22 +02:00

31 lines
737 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Common functions for classes based on StringByte interface.
*
* @package PhpMyAdmin-String
*/
namespace PMA\libraries;
/**
* Implements StringByte interface using native PHP functions.
*
* @package PhpMyAdmin-String
*/
abstract class StringTypeAbstract implements StringType
{
/**
* Checks if a number is in a range
*
* @param integer $num number to check for
* @param integer $lower lower bound
* @param integer $upper upper bound
*
* @return boolean whether the number is in the range or not
*/
public function numberInRangeInclusive($num, $lower, $upper)
{
return ($num >= $lower && $num <= $upper);
}
}