Skip to content

Commit fcc69ff

Browse files
committed
Use self keyword to get constant
1 parent 771427e commit fcc69ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsPhpize/JsPhpize.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function compile($input, $filename = null)
6868
$block = $parser->parse();
6969
$php = $compiler->compile($block);
7070

71-
if ($this->flags & JsPhpize::FLAG_TRUNCATED_PARENTHESES) {
71+
if ($this->flags & self::FLAG_TRUNCATED_PARENTHESES) {
7272
$php = preg_replace('/\)[\s;]*$/', '', $php);
7373
}
7474

0 commit comments

Comments
 (0)