| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class ObjectAutocomplete extends ObjectParserAutocomplete |
||
| 23 | { |
||
| 24 | // Public Properties |
||
| 25 | // ========================================================================= |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string The name of the autocomplete |
||
| 29 | */ |
||
| 30 | public $name = 'ObjectAutocomplete'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string The type of the autocomplete |
||
| 34 | */ |
||
| 35 | public $type = AutocompleteTypes::TwigExpressionAutocomplete; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var bool Whether the autocomplete should be parsed with . -delimited nested sub-properties |
||
| 39 | */ |
||
| 40 | public $hasSubProperties = true; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var BaseObject The object to parse for autocomplete properties |
||
| 44 | */ |
||
| 45 | public $object = null; |
||
| 46 | |||
| 47 | // Public Methods |
||
| 48 | // ========================================================================= |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inerhitDoc |
||
| 52 | */ |
||
| 53 | public function generateCompleteItems(): void |
||
| 60 |