mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-13 13:52:49 +00:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
namespace Nexmo\Insights;
|
|
|
|
class Advanced extends Standard
|
|
{
|
|
public function getValidNumber()
|
|
{
|
|
return $this['valid_number'];
|
|
}
|
|
|
|
public function getReachable()
|
|
{
|
|
return $this['reachable'];
|
|
}
|
|
} |