100% of 8OPs |
100% of 1Lines |
100% of 1Branches |
100% of 1Paths |
Method | OPs | OPs % | Lines | Line % | Branches | Branches % | Paths | Path % |
---|---|---|---|---|---|---|---|---|
mageekguy\atoum\writer\decorators\eol::decorate() | 8 | 100% | 1 | 100% | 1 | 100% | 1 | 100% |
# | |
---|---|
1 |
<?php |
2 |
|
3 |
namespace mageekguy\atoum\writer\decorators; |
4 |
|
5 |
use |
6 |
mageekguy\atoum\writer |
7 |
; |
8 |
|
9 |
class eol implements writer\decorator |
10 |
{ |
11 |
public function decorate($message)100% |
12 |
{ |
13 |
return $message . PHP_EOL; |
14 |
} |
15 |
} |