1
0
Fork 0
php-language-server/validation/frameworks/broken/stringVariable.php

9 lines
90 B
PHP
Raw Normal View History

2017-04-13 16:14:58 +00:00
<?php
class B
{
public $hi = 3;
function a () {
echo "$this->hi";
}
}