Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
WPAdmin | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace NewfoldLabs\WP\Module\Installer\WPAdmin; |
4 | |
5 | use NewfoldLabs\WP\Module\Installer\WPAdmin\Listeners\InstallerListener; |
6 | |
7 | /** |
8 | * Manages all the wp-admin related functionalities for the module. |
9 | */ |
10 | class WPAdmin { |
11 | /** |
12 | * Constructor for the WPAdmin class. |
13 | */ |
14 | public function __construct() { |
15 | new InstallerListener(); |
16 | } |
17 | } |