Skip to content

Commit

Permalink
Fixed syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jussiviitamaki committed Feb 20, 2025
1 parent d497862 commit 0ca7c18
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ public function render(ResultRow $values) {
if (!$entity->isLatestTranslationAffectedRevision()) {
$latest_translation_affected = $this->getLatestTranslationAffectedRevision($entity);
if ($entity->get('moderation_state')->value !== $latest_translation_affected->get('moderation_state')->value) {
;
$moderation_state = $this->getLatestRevisionModerationState($entity);
return [
'#theme' => 'service_has_changes_field',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class ShortenerredirectForm extends ContentEntityForm {
public function __construct(EntityRepositoryInterface $entity_repository, EntityTypeBundleInfoInterface $entity_type_bundle_info, TimeInterface $time, RendererInterface $renderer) {
parent::__construct($entity_repository, $entity_type_bundle_info, $time);
$this->renderer = $renderer;
;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ function _hel_tpm_user_expiry_block_unactivated_users() {
$storage = \Drupal::service('entity_type.manager')->getStorage('user');
$user_settings = \Drupal::config('user.settings');
$limit = \Drupal::time()->getRequestTime() - $user_settings->get('password_reset_timeout');
;

$uids = \Drupal::database()->select('users_field_data', 'ufd')
->fields('ufd', ['uid'])
Expand Down

0 comments on commit 0ca7c18

Please sign in to comment.