Skip to content

Commit

Permalink
Allow compatability with drush <= 12. See drupal.org/i/3445590. (#6019)
Browse files Browse the repository at this point in the history
  • Loading branch information
simesy authored May 31, 2024
1 parent 5c65f63 commit 34cc1cc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Drupal/Commands/sql/SanitizePluginInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);

namespace Drush\Drupal\Commands\sql;

use Consolidation\AnnotatedCommand\CommandData;
use Symfony\Component\Console\Input\InputInterface;

/**
* @deprecated use \Drush\Commands\sql\sanitize\SanitizePluginInterface instead.
*/
interface SanitizePluginInterface
{
public function sanitize($result, CommandData $commandData);
public function messages(array &$messages, InputInterface $input);
}

0 comments on commit 34cc1cc

Please sign in to comment.