PhpSandbox\PHPSandbox::deblacklistInterface PHP Méthode

deblacklistInterface() public méthode

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