Skip to content

Commit

Permalink
Merge pull request #461 from City-of-Helsinki/UHF-10015
Browse files Browse the repository at this point in the history
UHF-10015: Configure and update stage file proxy, update coder modules, phpcs fixes
  • Loading branch information
hyrsky authored Apr 25, 2024
2 parents 41cb9bb + 5a5d7a7 commit 3b79047
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ PROJECT_NAME=rekry
OC_PROJECT_NAME=hki-kanslia-helfi-rekry-test

# Stage file proxy origin url and folder
STAGE_FILE_PROXY_ORIGIN=
STAGE_FILE_PROXY_ORIGIN_DIR=
STAGE_FILE_PROXY_ORIGIN=https://stplattaprod.blob.core.windows.net
STAGE_FILE_PROXY_ORIGIN_DIR=helfirekryprod

# Local hostname
DRUPAL_HOSTNAME=helfi-rekry.docker.so
Expand Down
70 changes: 35 additions & 35 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ImageImportSubscriber implements EventSubscriberInterface {
public function __construct(
private FileSystem $fileSystem,
private ConfigFactory $config,
private AccountProxyInterface $currentUser
private AccountProxyInterface $currentUser,
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static function create(
ContainerInterface $container,
array $configuration,
$plugin_id,
$plugin_definition
$plugin_definition,
) : self {
return new self(
$configuration,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\helfi_rekry_content\Plugin\migrate_plus\data_parser;

Expand Down Expand Up @@ -32,7 +32,7 @@ public static function create(
ContainerInterface $container,
array $configuration,
$plugin_id,
$plugin_definition
$plugin_definition,
): self {
/** @var self $instance */
$instance = parent::create($container, $configuration, $plugin_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class JobListingCleaner {
public function __construct(
private readonly HelbitClient $client,
private readonly ContentLock $contentLock,
EntityTypeManagerInterface $entityTypeManager
EntityTypeManagerInterface $entityTypeManager,
) {
$this->storage = $entityTypeManager->getStorage('node');
}
Expand Down

0 comments on commit 3b79047

Please sign in to comment.