You are here

Beginner.php in Automatic Updates 8.2

File

package_manager/tests/modules/package_manager_bypass/src/Beginner.php
View source
<?php

namespace Drupal\package_manager_bypass;

use PhpTuf\ComposerStager\Domain\BeginnerInterface;
use PhpTuf\ComposerStager\Domain\Output\ProcessOutputCallbackInterface;

/**
 * Defines an update beginner which doesn't do anything.
 */
class Beginner implements BeginnerInterface {

  /**
   * {@inheritdoc}
   */
  public function begin(string $activeDir, string $stagingDir, ?array $exclusions = [], ?ProcessOutputCallbackInterface $callback = NULL, ?int $timeout = 120) : void {
  }

}

Classes

Namesort descending Description
Beginner Defines an update beginner which doesn't do anything.