Skip to content

Commit 63fd9eb

Browse files
committed
Add defgroup phpstan and custom variable phpstan-flycheck-auto-set-executable
1 parent a198897 commit 63fd9eb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

phpstan.el

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,20 @@
3434

3535
;; Variables:
3636

37+
(defgroup phpstan nil
38+
"Interaface to PHPStan"
39+
:tag "PHPStan"
40+
:prefix "phpstan-"
41+
:group 'tools
42+
:group 'php
43+
:link '(url-link :tag "PHPStan" "https://github.com/phpstan/phpstan")
44+
:link '(url-link :tag "phpstan.el" "https://github.com/emacs-php/phpstan.el"))
45+
46+
(defcustom phpstan-flycheck-auto-set-executable t
47+
"Set flycheck phpstan-executable automatically."
48+
:type 'boolean
49+
:group 'phpstan)
50+
3751
;;;###autoload
3852
(progn
3953
(defvar phpstan-config-file nil)

0 commit comments

Comments
 (0)