Implements one or more interfaces.
Name|string ...$interfaces Names of interfaces to implement:
$this The builder instance (for fluid interface)
public function implement(...$interfaces) { foreach ($interfaces as $interface) { $this->implements[] = BuilderHelpers::normalizeName($interface); } return $this; }