1<?php 2 3namespace Elastica\Processor\Traits; 4 5trait IgnoreMissingTrait 6{ 7 /** 8 * Set "ignore_missing" option. 9 * 10 * @return $this 11 */ 12 public function setIgnoreMissing(bool $ignoreMissing): self 13 { 14 return $this->setParam('ignore_missing', $ignoreMissing); 15 } 16} 17