Skip to content

Commit 8c960e5

Browse files
committed
Make enable php-mode-lineup-cascaded-calls in default
refs #563
1 parent c08d1fc commit 8c960e5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

php-mode.el

+4
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@ but only if the setting is enabled"
661661
(tab-width . ,(default-value 'tab-width))
662662
(fill-column . ,(default-value 'fill-column))
663663
(show-trailing-whitespace . ,(default-value 'show-trailing-whitespace))
664+
(php-mode-lineup-cascaded-calls . t)
664665
(php-style-delete-trailing-whitespace . nil)))
665666

666667
(defun php-enable-default-coding-style ()
@@ -687,6 +688,7 @@ but only if the setting is enabled"
687688
(tab-width . 2)
688689
(fill-column . 78)
689690
(show-trailing-whitespace . t)
691+
(php-mode-lineup-cascaded-calls . nil)
690692
(php-style-delete-trailing-whitespace . t)))
691693

692694
(defun php-enable-drupal-coding-style ()
@@ -713,6 +715,7 @@ but only if the setting is enabled"
713715
'("php"
714716
(c-offsets-alist . ((statement-cont . php-lineup-hanging-semicolon)))
715717
(c-indent-comments-syntactically-p . t)
718+
(php-mode-lineup-cascaded-calls . nil)
716719
(fill-column . 78)))
717720

718721
(defun php-enable-symfony2-coding-style ()
@@ -727,6 +730,7 @@ but only if the setting is enabled"
727730
(c-indent-comments-syntactically-p . t)
728731
(fill-column . 78)
729732
(show-trailing-whitespace . t)
733+
(php-mode-lineup-cascaded-calls . nil)
730734
(php-style-delete-trailing-whitespace . t)))
731735

732736
(defun php-enable-psr2-coding-style ()

0 commit comments

Comments
 (0)