for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LeadThread\Sms\Search;
use Illuminate\Contracts\Support\Arrayable;
class Bandwidth extends Search
{
protected function getBaseArray()
return [];
}
protected function handleParamKey($key, &$arr)
switch ($key) {
case 'areacode':
$arr["areaCode"] = $this->{$key};
break;
case 'country':
//do nothing
default:
$arr[$key] = $this->{$key};