1
0
Fork 0
php-language-server/tests/Validation/cases/stringVariable.php

9 lines
90 B
PHP
Raw Normal View History

<?php
class B
{
public $hi = 3;
function a () {
echo "$this->hi";
}
}