web3.php/src/Validators/StringValidator.php
2017-12-19 14:55:51 +08:00

28 lines
436 B
PHP

<?php
/**
* This file is part of web3.php package.
*
* (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
*
* @author Peter Lai <alk03073135@gmail.com>
* @license MIT
*/
namespace Web3\Validators;
use Web3\Validators\IValidator;
class StringValidator
{
/**
* validate
*
* @param string $value
* @return bool
*/
public static function validate($value)
{
return is_string($value);
}
}