Fix formatter tests
parent
afa9061d60
commit
11516fb497
|
@ -9,11 +9,15 @@ class TestClass
|
||||||
{
|
{
|
||||||
public $testProperty;
|
public $testProperty;
|
||||||
|
|
||||||
public function testMethod($testParameter)
|
/**
|
||||||
|
* @param $testParameter description
|
||||||
|
*/
|
||||||
|
public function testMethod( $testParameter)
|
||||||
|
|
||||||
{
|
{
|
||||||
$testVariable = 123;
|
$testVariable = 123;
|
||||||
|
|
||||||
if ( empty($testParameter)){
|
if ( empty($testParameter)) {
|
||||||
echo 'Empty';
|
echo 'Empty';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,9 +5,14 @@ namespace TestNamespace;
|
||||||
class TestClass
|
class TestClass
|
||||||
{
|
{
|
||||||
public $testProperty;
|
public $testProperty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $testParameter description
|
||||||
|
*/
|
||||||
public function testMethod($testParameter)
|
public function testMethod($testParameter)
|
||||||
{
|
{
|
||||||
$testVariable = 123;
|
$testVariable = 123;
|
||||||
|
|
||||||
if (empty($testParameter)) {
|
if (empty($testParameter)) {
|
||||||
echo 'Empty';
|
echo 'Empty';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue