Skip to content

Commit

Permalink
Move VerifySite to site_hosting module.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpugh committed Sep 18, 2024
1 parent 3735c8b commit 82e1d0d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Drupal/Modules/site_hosting/src/Plugin/TaskType/VerifySite.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

declare(strict_types=1);

namespace Drupal\site_hosting\Plugin\TaskType;

use Drupal\tasks\TaskTypePluginBase;

/**
* Plugin implementation of the task_type.
*
* @TaskType(
* id = "verify_site",
* label = @Translation("Verify Site"),
* description = @Translation("Prepare code and launch site.")
* )
*/
final class VerifySite extends TaskTypePluginBase {

public function commands(): array
{
return [
'git_checkout' => [],
'ddev_start' => [],
];
}

}

0 comments on commit 82e1d0d

Please sign in to comment.