
| Current Path : /var/www/html/vendor/drush/drush/src/Commands/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/vendor/drush/drush/src/Commands/LegacyCommands.php |
<?php
namespace Drush\Commands;
class LegacyCommands extends DrushCommands
{
/**
* The core:init command was removed. Please edit your .bashrc manually.
*
* @command core:init
* @hidden
* @obsolete
*/
public function init(): void
{
}
/**
* Drupal 8+ does not support disabling modules. See pm:uninstall command.
*
* @command pm:disable
* @aliases dis,pm-disable
* @hidden
* @obsolete
*/
public function disable(): void
{
}
/**
* The pm-info command was removed. Please see `drush pm:list` and `composer show`
*
* @command pm:info
* @aliases pmi,pm-info
* @hidden
* @obsolete
*/
public function info(): void
{
}
/**
* The pm-projectinfo command was removed. Please see `drush pm:list` and `composer show`
*
* @command pm:projectinfo
* @allow-additional-options
* @aliases pm-projectinfo
* @hidden
* @obsolete
*/
public function projectInfo(): void
{
}
/**
* The pm-refresh command was removed. It is no longer useful.
*
* @command pm:refresh
* @aliases rf,pm-refresh
* @hidden
* @obsolete
*/
public function refresh(): void
{
}
/**
* The pm-updatestatus command was removed. Please see `composer show`
* and `composer update --dry-run`. For security release notification,
* see `drush pm:security`.
*
* @command pm:updatestatus
* @aliases ups,pm-updatestatus
* @hidden
* @obsolete
*/
public function updatestatus(): void
{
}
/**
* The pm-updatecode command was removed. Please see
* `composer update --dry-run` and `composer update`.
* For security release notification, see `drush pm:security`.
*
* @command pm:updatecode
* @aliases upc,pm-update,pm-updatecode
* @hidden
* @obsolete
*/
public function updatecode(): void
{
}
/**
* The pm-releasenotes command was removed. No replacement available.
*
* @command pm:releasenotes
* @aliases rln,pm-releasenotes
* @hidden
* @obsolete
*/
public function releaseNotes(): void
{
}
/**
* The pm-releases command was removed. Please see `composer show <packagename>`
*
* @command pm:releases
* @aliases rl,pm-releases
* @hidden
* @obsolete
*/
public function releases(): void
{
}
/**
* dl has been removed. Please build your site using Composer. Add new projects with composer require drupal/[project-name]. Use https://www.drupal.org/project/composer_generate to build a composer.json which represents the enabled modules on your site.
*
* @command pm:download
* @aliases dl,pm-download
* @hidden
* @obsolete
*/
public function download(): void
{
}
/**
* core:execute has been removed. Please try `site:ssh` command.
*
* @command core:execute
* @aliases core-execute
* @hidden
* @obsolete
*/
public function execute(): void
{
}
}