3 declare(strict_types=1);
62 if (is_null($this->indexed)) {
64 $data = $this->
raw(self::FIELD_INDEXED);
68 $this->indexed = (int) $data;
82 if (is_null($this->failed)) {
84 $data = $this->
raw(self::FIELD_FAILED);
88 $this->failed = (int) $data;
102 if (is_null($this->estimatedTotal)) {
104 $data = $this->
raw(self::FIELD_ESTIMATED_TOTAL);
105 if (is_null($data)) {
108 $this->estimatedTotal = (int) $data;