Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 3 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | /** |
| 3 | * Simple Payments module loader. |
| 4 | * |
| 5 | * This file is not a typical module; the file is required from module-extras.php and thus always required |
| 6 | * when the site is connected to WordPress.com. See $connected_tools in module-extras.php. |
| 7 | * |
| 8 | * @package automattic/jetpack |
| 9 | */ |
| 10 | |
| 11 | use Automattic\Jetpack\Paypal_Payments\Simple_Payments; |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit( 0 ); |
| 15 | } |
| 16 | |
| 17 | Simple_Payments::get_instance(); |