Arbit - project tracking

PHPMD

Browse source code

File: / test/ PHP/ PMD/ _files/ Regression/ 007/ testLocalVariableUsedInDoubleQuoteStringGetsNotReported.php

Type
text/plain text/plain
Last Author
mapi
Version
187
Line Rev. Author Source
1 187 mapi <?php
2 mapi class testLocalVariableUsedInDoubleQuoteStringGetsNotReported
3 mapi {
4 mapi public function testLocalVariableUsedInDoubleQuoteStringGetsNotReported()
5 mapi {
6 mapi $usedVar = "foobar";
7 mapi
8 mapi echo "Testing {$usedVar} inside a double quoted string";
9 mapi }
10 mapi }