PluginProbe
SpinupWP / 1.4
SpinupWP v1.4
trunk 1.0 1.0.1 1.0.2 1.0.3 1.1 1.1.1 1.1.2 1.2 1.3 1.4 1.4.1 1.4.2 1.5 1.5.1 1.6 1.7 1.7.1 1.8.0 1.9.0 1.9.1
spinupwp / src / Cli.php

Cli.php in SpinupWP 1.4, at src/Cli.php

24 lines 371 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace DeliciousBrains\SpinupWp;
4
5 use WP_CLI;
6
7 class Cli {
8
9 /**
10 * Register a CLI command.
11 *
12 * @param string $command
13 * @param string $callable
14 *
15 * @return bool
16 */
17 public function register_command( $command, $callable ) {
18 if ( ! defined( 'WP_CLI' ) || ! WP_CLI ) {
19 return false;
20 }
21
22 return WP_CLI::add_command( $command, $callable );
23 }
24 }