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

25 lines
315 B
PHP

<?php
namespace TestNamespace;
class TestClass
{
public $testProperty;
/**
* @param $testParameter description
*/
public function testMethod( $testParameter)
{
$testVariable = 123;
if ( empty($testParameter)) {
echo 'Empty';
}
}
}