| Total Complexity | 5 |
| Total Lines | 50 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class EntitySpellCorrectionMetadata |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $correctedQuery = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var boolean |
||
| 14 | */ |
||
| 15 | protected $hasNonCorrectedResults = null; |
||
| 16 | |||
| 17 | public function __construct() |
||
| 18 | { |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getCorrectedQuery() |
||
| 25 | { |
||
| 26 | return $this->correctedQuery; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $correctedQuery |
||
| 31 | * @return \SForce\Wsdl\EntitySpellCorrectionMetadata |
||
| 32 | */ |
||
| 33 | public function setCorrectedQuery($correctedQuery) |
||
| 34 | { |
||
| 35 | $this->correctedQuery = $correctedQuery; |
||
| 36 | return $this; |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return boolean |
||
| 41 | */ |
||
| 42 | public function getHasNonCorrectedResults() |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param boolean $hasNonCorrectedResults |
||
| 49 | * @return \SForce\Wsdl\EntitySpellCorrectionMetadata |
||
| 50 | */ |
||
| 51 | public function setHasNonCorrectedResults($hasNonCorrectedResults) |
||
| 55 | } |
||
| 56 | } |
||
| 57 |