Commit b4cc1d3e authored by Adam G-H's avatar Adam G-H
Browse files

Issue #3293157 by phenaproxima, tedbow: Make everything internal

parent b1abe1f5
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -8,8 +8,13 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
 * Clears stale update data once staged changes have been applied.
 *
 * @internal
 *   This is an internal part of Package Manager and may be changed or removed
 *   at any time without warning. External code should not interact with this
 *   class.
 */
class UpdateDataSubscriber implements EventSubscriberInterface {
final class UpdateDataSubscriber implements EventSubscriberInterface {

  /**
   * The update manager service.
+6 −1
Original line number Diff line number Diff line
@@ -9,8 +9,13 @@ use Symfony\Component\Process\ExecutableFinder as SymfonyExecutableFinder;

/**
 * An executable finder which looks for executable paths in configuration.
 *
 * @internal
 *   This is an internal part of Package Manager and may be changed or removed
 *   at any time without warning. External code should not interact with this
 *   class.
 */
class ExecutableFinder implements ExecutableFinderInterface {
final class ExecutableFinder implements ExecutableFinderInterface {

  /**
   * The decorated executable finder.
+6 −1
Original line number Diff line number Diff line
@@ -11,8 +11,13 @@ use Symfony\Component\Process\ExecutableFinder;

/**
 * A file syncer factory which creates a file syncer according to configuration.
 *
 * @internal
 *   This is an internal part of Package Manager and may be changed or removed
 *   at any time without warning. External code should not interact with this
 *   class.
 */
class FileSyncerFactory {
final class FileSyncerFactory {

  /**
   * The decorated file syncer factory.
+6 −1
Original line number Diff line number Diff line
@@ -9,8 +9,13 @@ use Symfony\Component\DependencyInjection\Reference;

/**
 * Defines dynamic container services for Package Manager.
 *
 * @internal
 *   This is an internal part of Package Manager and may be changed or removed
 *   at any time without warning. External code should not interact with this
 *   class.
 */
class PackageManagerServiceProvider extends ServiceProviderBase {
final class PackageManagerServiceProvider extends ServiceProviderBase {

  /**
   * {@inheritdoc}
+6 −1
Original line number Diff line number Diff line
@@ -9,8 +9,13 @@ use Symfony\Component\DependencyInjection\ContainerAwareTrait;

/**
 * Prevents any module from being uninstalled if update is in process.
 *
 * @internal
 *   This is an internal part of Package Manager and may be changed or removed
 *   at any time without warning. External code should not interact with this
 *   class.
 */
class PackageManagerUninstallValidator implements ModuleUninstallValidatorInterface, ContainerAwareInterface {
final class PackageManagerUninstallValidator implements ModuleUninstallValidatorInterface, ContainerAwareInterface {

  use ContainerAwareTrait;
  use StringTranslationTrait;
Loading