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

100% of 11

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\trim::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 trim implements writer\decorator
10
{
11
	public function decorate($message)100%
12
	{
13
		return trim($message);
14
	}
15
}