for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Laravel Meetups.
*
* (c) Nuno Maduro <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LaravelMeetups\Http\Client\Catalog;
use LaravelMeetups\Contracts\Http\Client\Strategy as Contract;
use LaravelMeetups\Http\Client\AbstractStrategy;
* Class Strategy.
class Strategy extends AbstractStrategy implements Contract
{
* {@inheritdoc}
public function getParams()
return [
'allMeetups' => $this->config->getAllMeetups() ? 'true' : 'false',
'keywords' => $this->config->getKeywords(),
'radius' => $this->config->getRadius(),
];
}