Browse Source

typo fixed

tags/0.7
Paul Rock 7 years ago
parent
commit
f35e9aaeaf
  1. 2
      examples/vlans_bridge.php
  2. 12
      src/Exceptions/Exception.php

2
examples/vlans_bridge.php

@ -46,7 +46,7 @@ foreach ($vlans as $vlanId => $ports) {
print_r($response);
}
// Add untaged ports to bridge with tagging
// Add untagged ports to bridge with tagging
foreach ($ports as $port) {
$vlan = new Query('/interface/bridge/vlan/add');
$vlan->add("=bridge=vlan$vlanId-bridge")->add("=untagged=ether$port")->add("=vlan-ids=$vlanId");

12
src/Exceptions/Exception.php

@ -1,12 +0,0 @@
<?php
namespace RouterOS\Exceptions;
/**
* Class Exception
* @package RouterOS\Exceptions
* @since 0.1
*/
class Exception extends \Exception
{
}
Loading…
Cancel
Save