File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 5858
5959
6060; ; Variables:
61-
6261(defgroup phpstan nil
63- " Interaface to PHPStan"
62+ " Interaface to PHPStan. "
6463 :tag " PHPStan"
6564 :prefix " phpstan-"
6665 :group 'tools
229228 (php-project-get-root-dir)))))
230229
231230(defun phpstan-get-config-file ()
232- " Return path to phpstan configure file or ` NIL' ."
231+ " Return path to phpstan configure file or NIL."
233232 (if phpstan-config-file
234233 (if (and (consp phpstan-config-file)
235234 (eq 'root (car phpstan-config-file)))
252251 phpstan-autoload-file)))
253252
254253(defun phpstan-normalize-path (source-original &optional source )
255- " Return normalized source file path to pass by ` SOURCE-ORIGINAL' OR ` SOURCE' .
254+ " Return normalized source file path to pass by SOURCE-ORIGINAL or SOURCE.
256255
257256If neither `phpstan-replace-path-prefix' nor executable docker is set,
258257it returns the value of `SOURCE' as it is."
@@ -272,7 +271,7 @@ it returns the value of `SOURCE' as it is."
272271 (or source source-original))))
273272
274273(defun phpstan-get-level ()
275- " Return path to phpstan configure file or ` NIL' ."
274+ " Return path to phpstan configure file or NIL."
276275 (cond
277276 ((null phpstan-level) nil )
278277 ((integerp phpstan-level) (int-to-string phpstan-level))
You can’t perform that action at this time.
0 commit comments