for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace olvlvl\ElasticsearchDSL\Query\Compound\BoolQuery;
use olvlvl\ElasticsearchDSL\Query\QueryCollection;
class ShouldQuery extends QueryCollection
{
const NAME = 'should';
/**
* @inheritdoc
*/
public function jsonSerialize()
return [ self::NAME => parent::jsonSerialize() ];
}