You are here

public function Committer::__construct in Automatic Updates 8.2

Constructs a Committer object.

Parameters

\PhpTuf\ComposerStager\Domain\CommitterInterface $decorated: The decorated committer service.

File

package_manager/tests/modules/package_manager_bypass/src/Committer.php, line 26

Class

Committer
Defines an update committer which doesn't do any actual committing.

Namespace

Drupal\package_manager_bypass

Code

public function __construct(CommitterInterface $decorated) {
  $this->decorated = $decorated;
}