diff --git a/lisp/php-format.el b/lisp/php-format.el index 166975ff..c9c6c2a6 100644 --- a/lisp/php-format.el +++ b/lisp/php-format.el @@ -97,11 +97,11 @@ (defcustom php-format-command 'auto "A formatter symbol, or a list of command and arguments." :tag "PHP Format Command" - :type '(choice (const nil :tag "Disabled reformat codes") - (const 'auto :tag "Auto") - (const 'ecs :tag "Easy Coding Standard") - (const 'php-cs-fixer :tag "PHP-CS-Fixer") - (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) (repeat string :tag "Command and arguments")) :safe (lambda (v) (or (symbolp v) (listp v))) :group 'php-format)