Loading automatic_updates_extensions/tests/modules/automatic_updates_extensions_test_api/src/ApiController.php +3 −3 Original line number Diff line number Diff line Loading @@ -32,13 +32,13 @@ class ApiController extends ControllerBase { /** * Constructs an ApiController object. * * @param \Drupal\automatic_updates_extensions\ExtensionUpdater $extensionUpdater * @param \Drupal\automatic_updates_extensions\ExtensionUpdater $extension_updater * The updater. * @param \Drupal\package_manager\PathLocator $path_locator * The path locator service. */ public function __construct(ExtensionUpdater $extensionUpdater, PathLocator $path_locator) { $this->extensionUpdater = $extensionUpdater; public function __construct(ExtensionUpdater $extension_updater, PathLocator $path_locator) { $this->extensionUpdater = $extension_updater; $this->pathLocator = $path_locator; } Loading package_manager/tests/modules/package_manager_bypass/src/BypassedStagerServiceBase.php +3 −3 Original line number Diff line number Diff line Loading @@ -62,10 +62,10 @@ abstract class BypassedStagerServiceBase { * The path to which the fixture files should be mirrored. */ protected function copyFixtureFilesTo(PathInterface $destination): void { $fixturePath = $this->state->get(static::class . ' fixture'); $fixture_path = $this->state->get(static::class . ' fixture'); if ($fixturePath && is_dir($fixturePath)) { $this->fileSystem->mirror($fixturePath, $destination->resolve(), NULL, [ if ($fixture_path && is_dir($fixture_path)) { $this->fileSystem->mirror($fixture_path, $destination->resolve(), NULL, [ 'override' => TRUE, 'delete' => TRUE, ]); Loading Loading
automatic_updates_extensions/tests/modules/automatic_updates_extensions_test_api/src/ApiController.php +3 −3 Original line number Diff line number Diff line Loading @@ -32,13 +32,13 @@ class ApiController extends ControllerBase { /** * Constructs an ApiController object. * * @param \Drupal\automatic_updates_extensions\ExtensionUpdater $extensionUpdater * @param \Drupal\automatic_updates_extensions\ExtensionUpdater $extension_updater * The updater. * @param \Drupal\package_manager\PathLocator $path_locator * The path locator service. */ public function __construct(ExtensionUpdater $extensionUpdater, PathLocator $path_locator) { $this->extensionUpdater = $extensionUpdater; public function __construct(ExtensionUpdater $extension_updater, PathLocator $path_locator) { $this->extensionUpdater = $extension_updater; $this->pathLocator = $path_locator; } Loading
package_manager/tests/modules/package_manager_bypass/src/BypassedStagerServiceBase.php +3 −3 Original line number Diff line number Diff line Loading @@ -62,10 +62,10 @@ abstract class BypassedStagerServiceBase { * The path to which the fixture files should be mirrored. */ protected function copyFixtureFilesTo(PathInterface $destination): void { $fixturePath = $this->state->get(static::class . ' fixture'); $fixture_path = $this->state->get(static::class . ' fixture'); if ($fixturePath && is_dir($fixturePath)) { $this->fileSystem->mirror($fixturePath, $destination->resolve(), NULL, [ if ($fixture_path && is_dir($fixture_path)) { $this->fileSystem->mirror($fixture_path, $destination->resolve(), NULL, [ 'override' => TRUE, 'delete' => TRUE, ]); Loading