for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Streak\Endpoint;
class Search extends AbstractEndpoint
{
const ENDPOINT = 'search';
public function query($query)
return $this->client->get(self::ENDPOINT, [
'query' => [
'query' => $query,
],
]);
}