cjohansson / emacs-phps-mode

Emacs major mode for PHP with code intelligence
GNU General Public License v3.0
36 stars 2 forks source link

Variable inside double quoted string breaks imenu index #11

Closed cjohansson closed 4 years ago

cjohansson commented 4 years ago
<?php
class myClass
{

    public function myFunction1()
    {
        echo "my string with variable {$variable} inside it";
    }

    public function myFunction2()
    {
    }

}