mageekguy\atoum\writer\decorators\eol: lines coverage

100% of 8

OPs

100% of 1

Lines

100% of 1

Branches

100% of 1

Paths
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
}