--- title: disabledFeature description: Disabled feature image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: disabledFeature [Back to constructors index](index.md) Disabled feature ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |feature|[string](../types/string.md) | Yes|Feature| |description|[string](../types/string.md) | Yes|Description| ### Type: [DisabledFeature](../types/DisabledFeature.md) ### Example: ```php $disabledFeature = ['_' => 'disabledFeature', 'feature' => 'string', 'description' => 'string']; ``` Or, if you're into Lua: ```lua disabledFeature={_='disabledFeature', feature='string', description='string'} ```