Skip to content

Commit

Permalink
Add DDEV Start command!
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpugh committed Sep 17, 2024
1 parent 575daa9 commit 961fd58
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Drupal/Modules/site_hosting/src/Plugin/Command/DdevStart.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

namespace Drupal\site_hosting\Plugin\Command;

use Drupal\commands\CommandPluginBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\user\Entity\User;

/**
* Clones and checks out code.
*
* @Command(
* id = "ddev_start",
* label = @Translation("DDEV Start"),
* description = @Translation("Run ddev start."),
* command = {
* "ddev start"
* }
* )
*/
class DdevStart extends CommandPluginBase {

}

0 comments on commit 961fd58

Please sign in to comment.