Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * Interface Data Point. |
| 4 | * |
| 5 | * @package automattic/jetpack-mu-wpcom |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Jetpack_Mu_Wpcom\Global_Styles; |
| 9 | |
| 10 | interface Data_Point { |
| 11 | /** |
| 12 | * Return value of the data point. |
| 13 | * |
| 14 | * @return mixed |
| 15 | */ |
| 16 | public function get_value(); |
| 17 | } |