Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| Activator | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| activate | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * Fired during plugin activation |
| 4 | * |
| 5 | * @link http://example.com |
| 6 | * @since 1.0.0 |
| 7 | * |
| 8 | * @package brianhenryie/bh-wp-bitcoin-gateway |
| 9 | */ |
| 10 | |
| 11 | namespace BrianHenryIE\WP_Bitcoin_Gateway\WP_Includes; |
| 12 | |
| 13 | /** |
| 14 | * Fired during plugin activation. |
| 15 | * |
| 16 | * This class defines all code necessary to run during the plugin's activation. |
| 17 | */ |
| 18 | class Activator { |
| 19 | |
| 20 | /** |
| 21 | * Short Description. (use period) |
| 22 | * |
| 23 | * Long Description. |
| 24 | * |
| 25 | * @since 1.0.0 |
| 26 | */ |
| 27 | public static function activate(): void { |
| 28 | } |
| 29 | } |