state = self::USE_TEMPORARY_INDEX; } /** * Set the state to use regular Index * * @return void */ public function useRegularIndex() { $this->state = self::USE_REGULAR_INDEX; } /** * Get state. * * @return string */ public function getState() { return $this->state; } }