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

10 lines
124 B
PHP

<?php
class Foo {
protected $bar = CURLAUTH_BASIC;
public function foo () {
$this->bar = 'hello';
}
}