We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062eb5c commit c3cb53eCopy full SHA for c3cb53e
lisp/php-format.el
@@ -97,11 +97,11 @@
97
(defcustom php-format-command 'auto
98
"A formatter symbol, or a list of command and arguments."
99
:tag "PHP Format Command"
100
- :type '(choice (const nil :tag "Disabled reformat codes")
101
- (const 'auto :tag "Auto")
102
- (const 'ecs :tag "Easy Coding Standard")
103
- (const 'php-cs-fixer :tag "PHP-CS-Fixer")
104
- (const 'phpcbf :tag "PHP Code Beautifier and Fixer")
+ :type '(choice (const :tag "Disabled reformat codes" nil)
+ (const :tag "Auto" 'auto)
+ (const :tag "Easy Coding Standard" 'ecs)
+ (const :tag "PHP-CS-Fixer" 'php-cs-fixer)
+ (const :tag "PHP Code Beautifier and Fixer" 'phpcbf)
105
(repeat string :tag "Command and arguments"))
106
:safe (lambda (v) (or (symbolp v) (listp v)))
107
:group 'php-format)
0 commit comments