Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
NoTransformStrategy | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
transform | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
<?php | |
namespace Siesta\NamingStrategy; | |
/** | |
* @author Gregor Müller | |
*/ | |
class NoTransformStrategy implements NamingStrategy | |
{ | |
/** | |
* @param string $value | |
* | |
* @return string | |
*/ | |
public function transform(string $value) : string | |
{ | |
return $value; | |
} | |
} |