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