widget-command/command.php
2016-08-26 07:42:05 -07:00

8 lines
295 B
PHP

<?php
if ( class_exists( 'WP_CLI' ) ) {
require_once dirname( __FILE__ ) . '/inc/class-command.php';
require_once dirname( __FILE__ ) . '/inc/class-formatter.php';
require_once dirname( __FILE__ ) . '/inc/class-logger.php';
WP_CLI::add_command( 'profile', 'runcommand\Profile\Command' );
}