X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FConsole%2FDatabaseStructure.php;h=6b1fa8d4d6fecaad35db3b445e00ddec0735820d;hb=d53f46b9583737668a3314a22d1eeacb00a47db2;hp=ca210064527af673f700cac9467dbd4396dfc108;hpb=4c4ed63dca13cc0382af9020e69980c63f988b47;p=friendica.git diff --git a/src/Console/DatabaseStructure.php b/src/Console/DatabaseStructure.php index ca21006452..6b1fa8d4d6 100644 --- a/src/Console/DatabaseStructure.php +++ b/src/Console/DatabaseStructure.php @@ -1,17 +1,34 @@ . + * + */ namespace Friendica\Console; -use Friendica\Core\Config\Cache\ConfigCache; +use Friendica\Core\Config\Cache; use Friendica\Core\Update; use Friendica\Database\Database; use Friendica\Database\DBStructure; use RuntimeException; /** - * @brief Performs database updates from the command line - * - * @author Hypolite Petovan + * Performs database updates from the command line */ class DatabaseStructure extends \Asika\SimpleConsole\Console { @@ -22,7 +39,7 @@ class DatabaseStructure extends \Asika\SimpleConsole\Console */ private $dba; /** - * @var ConfigCache + * @var Cache */ private $configCache; @@ -37,7 +54,7 @@ Commands dryrun Show database update schema queries without running them update Update database schema dumpsql Dump database schema - toinnodb Convert all tables from MyISAM to InnoDB + toinnodb Convert all tables from MyISAM or InnoDB in the Antelope file format to InnoDB in the Barracuda file format Options -h|--help|-? Show help information @@ -48,7 +65,7 @@ HELP; return $help; } - public function __construct(Database $dba, ConfigCache $configCache, $argv = null) + public function __construct(Database $dba, Cache $configCache, $argv = null) { parent::__construct($argv);