Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit eb8daff

Browse files
author
Andrey Helldar
authored
Merge pull request #28 from TheDragonCode/3.x
Fixed handling of called methods
2 parents 75c4916 + 4186472 commit eb8daff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/Parser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected function parse(string $content): void
4747
foreach ($this->match($content) as $match) {
4848
[$key, $value] = $this->split($match);
4949

50-
if (Str::contains($key, [':', '$', '=', '{', '}'])) {
50+
if (Str::contains($key, [':', '$', '=', '->', '{', '}'])) {
5151
continue;
5252
}
5353

0 commit comments

Comments
 (0)