Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| PageConfigFactory | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare( strict_types = 1 ); |
| 3 | |
| 4 | namespace Wikimedia\Parsoid\Config; |
| 5 | |
| 6 | /** |
| 7 | * Marker interface for a PageConfig factory defined in core. |
| 8 | * |
| 9 | * The actual types used in the method signatures for this class are |
| 10 | * not available to Parsoid, but define an empty marker interface |
| 11 | * so we can pass around the class even though we can't name the |
| 12 | * methods. |
| 13 | */ |
| 14 | abstract class PageConfigFactory { |
| 15 | } |