PhpSandbox\PHPSandbox::defineInterfaces PHP Méthode

defineInterfaces() public méthode

You can pass an associative array of interfaces to define
public defineInterfaces ( array $interfaces = [] )
$interfaces array Associative array of $interfaces to define
    public function defineInterfaces(array $interfaces = [])
    {
        foreach ($interfaces as $name => $value) {
            $this->defineInterface($name, $value);
        }
        return $this;
    }
PHPSandbox