1
0
Fork 0
php-language-server/fixtures/format_expected.php

15 lines
239 B
PHP
Raw Normal View History

2016-09-06 10:54:34 +00:00
<?php
namespace TestNamespace;
class TestClass
{
public $testProperty;
public function testMethod($testParameter)
{
$testVariable = 123;
if (empty($testParameter)) {
echo 'Empty';
}
}
}