Skip to content

Commit c3cb53e

Browse files
committed
Fix wrong defcustom
1 parent 062eb5c commit c3cb53e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lisp/php-format.el

+5-5
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@
9797
(defcustom php-format-command 'auto
9898
"A formatter symbol, or a list of command and arguments."
9999
: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")
100+
:type '(choice (const :tag "Disabled reformat codes" nil)
101+
(const :tag "Auto" 'auto)
102+
(const :tag "Easy Coding Standard" 'ecs)
103+
(const :tag "PHP-CS-Fixer" 'php-cs-fixer)
104+
(const :tag "PHP Code Beautifier and Fixer" 'phpcbf)
105105
(repeat string :tag "Command and arguments"))
106106
:safe (lambda (v) (or (symbolp v) (listp v)))
107107
:group 'php-format)

0 commit comments

Comments
 (0)