scaffold-package-command/templates/hello-world-command.mustache
2021-05-10 08:51:43 +01:00

17 lines
332 B
Text

<?php
namespace WP_CLI\HelloWorld;
use WP_CLI;
if ( ! class_exists( '\WP_CLI' ) ) {
return;
}
$wpcli_hello_world_autoloader = __DIR__ . '/vendor/autoload.php';
if ( file_exists( $wpcli_hello_world_autoloader ) ) {
require_once $wpcli_hello_world_autoloader;
}
WP_CLI::add_command( 'hello-world', HelloWorldCommand::class );