100% of 11OPs |
100% of 1Lines |
100% of 1Branches |
100% of 1Paths |
| Method | OPs | OPs % | Lines | Line % | Branches | Branches % | Paths | Path % |
|---|---|---|---|---|---|---|---|---|
| mageekguy\atoum\writer\decorators\rtrim::decorate() | 11 | 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 rtrim implements writer\decorator |
| 10 |
{
|
| 11 |
public function decorate($message)100% |
| 12 |
{
|
| 13 |
return rtrim($message); |
| 14 |
} |
| 15 |
} |