* : Cache key. *[--cache=] * : Webroot * [--user] * [--pass] * [--email] * : Method for grouping data within the cache which allows the same key to be used across groups. */ public function create( $args, $assoc_args ) { if (isset($assoc_args['cache'])){ EE_CLI::success( 'Site Successfully created with ' . $assoc_args['cache'] . ' cache.' ); } } /** * Remove a value from the object cache. * * * : Cache key. *[--files] * : Webroot * [--db=] * : Method for grouping data within the cache which allows the same key to be used across groups. */ public function delete( $args, $assoc_args ) { EE_CLI::success( 'Object deleted.' ); } } EE_CLI::add_command( 'site', 'Site_Command' );