1<?php
2
3/**
4 * GitHub Issue:    https://github.com/emacs-php/php-mode/issues/227
5 *
6 * Indentation of multi-line strings
7 */
8
9function my_func() {
10    return "a really long string with = inside " .
11"some more text";   // ###php-mode-test### ((indent 49))
12}
13