Network: Deprecate some garbage

Deprecations on a patch version breaks release protocol, but I don't care at this point. Nobody should have been using this shit anyway.
This commit is contained in:
Dylan K. Taylor
2018-12-31 22:52:33 +00:00
parent 75a0627bf2
commit f7de6eb59f
4 changed files with 11 additions and 3 deletions

View File

@ -84,10 +84,14 @@ class Network{
public function processInterfaces(){
foreach($this->interfaces as $interface){
$this->processInterface($interface);
$interface->process();
}
}
/**
* @deprecated
* @param SourceInterface $interface
*/
public function processInterface(SourceInterface $interface) : void{
$interface->process();
}