1<?php
2
3namespace Elastica\Aggregation\Traits;
4
5trait MissingTrait
6{
7    /**
8     * Defines how documents that are missing a value should be treated.
9     *
10     * @param mixed $missing
11     *
12     * @return $this
13     */
14    public function setMissing($missing): self
15    {
16        return $this->setParam('missing', $missing);
17    }
18}
19