Fix formatting (new line before comment)

This commit is contained in:
Miroslav Trninic
2018-04-30 21:46:36 +02:00
parent b4599ec67c
commit 63220c73c6
3 changed files with 3 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ class JuniorDeveloper
{ {
return 'Some junior developer generated code...'; return 'Some junior developer generated code...';
} }
/** /**
* Junior is authorized to call method on TeamLead (real delegation) * Junior is authorized to call method on TeamLead (real delegation)
*/ */

View File

@@ -26,6 +26,7 @@ class TeamLead
//note that we are passing $this from teamLead context //note that we are passing $this from teamLead context
return $this->junior->writeReallyBadCode($this); return $this->junior->writeReallyBadCode($this);
} }
/** /**
* Junior can call this method * Junior can call this method
*/ */

View File

@@ -17,6 +17,7 @@ class DelegationTest extends TestCase
$this->assertEquals($junior->writeBadCode(), $teamLead->writeCode()); $this->assertEquals($junior->writeBadCode(), $teamLead->writeCode());
} }
/** /**
* @test * @test
*/ */