PhpSandbox\PHPSandbox::blacklistType PHP Méthode

blacklistType() public méthode

You can pass a string of type name, or pass an array of the type names to blacklist
public blacklistType ( string | array $name )
$name string | array String of type name or array of type names to blacklist
    public function blacklistType($name)
    {
        if (func_num_args() > 1) {
            return $this->blacklistType(func_get_args());
        }
        $name = $this->normalizeType($name);
        return $this->blacklist('types', $name);
    }
PHPSandbox