| 1 | <?php |
||
| 13 | class PsiOptions |
||
| 14 | { |
||
| 15 | /** @var PsiFactory */ |
||
| 16 | private $factory; |
||
| 17 | /** @var bool */ |
||
| 18 | private $preserveKeysOfMultipleInputs = false; |
||
| 19 | |||
| 20 | 108 | public function __construct() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return PsiFactory |
||
| 27 | */ |
||
| 28 | 95 | public function getFactory() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param PsiFactory $factory |
||
| 35 | * |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | 1 | public function setFactory(PsiFactory $factory) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return boolean |
||
| 47 | */ |
||
| 48 | 15 | public function isPreserveKeysOfMultipleInputs() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @param boolean $preserveKeysOfMultipleInputs |
||
| 55 | * |
||
| 56 | * @return $this |
||
| 57 | */ |
||
| 58 | 3 | public function setPreserveKeysOfMultipleInputs($preserveKeysOfMultipleInputs) |
|
| 64 | } |
||
| 65 |