Ovh\Dedicated\Server\Server::findVmac PHP Method

findVmac() public method

* function to lookup a vMac based on an IP address - why dont they include this in the API?
public findVmac ( $ipv4 )
$ipv4 - IPv4 to lookup
    public function findVmac($ipv4)
    {
        $vmacs = json_decode(self::getClient()->getVmacs($this->getDomain()));
        foreach ($vmacs as $vmac) {
            $test_ip = json_decode(self::getClient()->getVmacIPAddresses($this->getDomain(), $vmac));
            foreach ($test_ip as $ip) {
                if ($ip == $ipv4) {
                    return $vmac;
                }
            }
        }
        return "";
    }