class KhanCommand
public
|
|
__construct()
|
No description | |
public static
|
|
shell($shell, $debug = false)
|
No description |
__construct()public __construct()
shell()public static shell($shell, $debug = false)
$shell |
||
$debug |
<?php
namespace Command;
class KhanCommand {
public function __construct(){}
public static function shell($shell, $debug = false){
if($debug){ shell_exec('cls'); }
shell_exec( $shell );
}
}