1
0
Fork 0

Fix formatter tests

pull/32/head
Michal Niewrzal 2016-09-20 11:39:58 +02:00
parent afa9061d60
commit 11516fb497
2 changed files with 15 additions and 6 deletions

View File

@ -9,11 +9,15 @@ class TestClass
{
public $testProperty;
public function testMethod($testParameter)
/**
* @param $testParameter description
*/
public function testMethod( $testParameter)
{
$testVariable = 123;
if ( empty($testParameter)){
if ( empty($testParameter)) {
echo 'Empty';
}
}

View File

@ -5,9 +5,14 @@ namespace TestNamespace;
class TestClass
{
public $testProperty;
/**
* @param $testParameter description
*/
public function testMethod($testParameter)
{
$testVariable = 123;
if (empty($testParameter)) {
echo 'Empty';
}