PhpSandbox\PHPSandbox::checkUse PHP 메소드

checkUse() 공개 메소드

Check use (or alias) name against PHPSandbox validation rules. This is an internal PHPSandbox function but requires public access to work.
public checkUse ( string $name ) : boolean
$name string String of the use (or alias) name to check
리턴 boolean Returns true if use (or alias) is valid
    public function checkUse($name)
    {
        return $this->checkAlias($name);
    }
PHPSandbox