28 lines
436 B
PHP
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);
|
|
}
|
|
} |