PhpSandbox\PHPSandbox::deblacklistType PHP Method

deblacklistType() public method

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