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

21 lines
319 B
PHP
Raw Permalink Normal View History

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