Use dirname rather than __DIR__ and use parenthesis for WC_CLI

This commit is contained in:
Shiva Poudel 2018-01-15 11:06:53 +05:45
parent dff5fefe73
commit e17d2819ea
1 changed files with 13 additions and 10 deletions

View File

@ -1,14 +1,17 @@
<?php <?php
/**
* Enables WooCommerce, via the the command line.
*
* @package WooCommerce\CLI
* @version 3.0.0
*/
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
exit; exit;
} }
/** /**
* Enables WooCommerce, via the the command line. * CLI class.
*
* @version 3.0.0
* @package WooCommerce
* @author WooCommerce
*/ */
class WC_CLI { class WC_CLI {
/** /**
@ -23,10 +26,10 @@ class WC_CLI {
* Load command files. * Load command files.
*/ */
private function includes() { private function includes() {
require_once __DIR__ . '/cli/class-wc-cli-runner.php'; require_once dirname( __FILE__ ) . '/cli/class-wc-cli-runner.php';
require_once __DIR__ . '/cli/class-wc-cli-rest-command.php'; require_once dirname( __FILE__ ) . '/cli/class-wc-cli-rest-command.php';
require_once __DIR__ . '/cli/class-wc-cli-tool-command.php'; require_once dirname( __FILE__ ) . '/cli/class-wc-cli-tool-command.php';
require_once __DIR__ . '/cli/class-wc-cli-update-command.php'; require_once dirname( __FILE__ ) . '/cli/class-wc-cli-update-command.php';
} }
/** /**
@ -39,4 +42,4 @@ class WC_CLI {
} }
} }
new WC_CLI; new WC_CLI();