You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
336 B

<?php
namespace EE_CLI\Dispatcher;
/**
* Get the path to a command, e.g. "core download"
*
* @param EE_CLI\Dispatcher\Subcommand $command
* @return string
*/
function get_path( $command ) {
$path = array();
do {
array_unshift( $path, $command->get_name() );
} while ( $command = $command->get_parent() );
return $path;
}