mirror of
https://github.com/Intervention/image.git
synced 2025-08-15 10:23:59 +02:00
added missing docblock
This commit is contained in:
@@ -205,6 +205,12 @@ class Argument
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if value is "PHP" integer (120 but also 120.0)
|
||||||
|
*
|
||||||
|
* @param mixed $value
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
private function isDigit($value)
|
private function isDigit($value)
|
||||||
{
|
{
|
||||||
return is_numeric($value) ? intval($value) == $value : false;
|
return is_numeric($value) ? intval($value) == $value : false;
|
||||||
|
Reference in New Issue
Block a user