Skip to content

Commit 63220c7

Browse files
committed
Fix formatting (new line before comment)
1 parent b4599ec commit 63220c7

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

More/Delegation/JuniorDeveloper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public function writeBadCode(): string
88
{
99
return 'Some junior developer generated code...';
1010
}
11+
1112
/**
1213
* Junior is authorized to call method on TeamLead (real delegation)
1314
*/

More/Delegation/TeamLead.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public function writeBadCode(): string
2626
//note that we are passing $this from teamLead context
2727
return $this->junior->writeReallyBadCode($this);
2828
}
29+
2930
/**
3031
* Junior can call this method
3132
*/

More/Delegation/Tests/DelegationTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public function teamLeadCanBlameJuniorForBadCode()
1717

1818
$this->assertEquals($junior->writeBadCode(), $teamLead->writeCode());
1919
}
20+
2021
/**
2122
* @test
2223
*/

0 commit comments

Comments
 (0)