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