Skip to content

Commit e408c62

Browse files
committed
Applied coding standards
1 parent 8aac380 commit e408c62

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Plugin/os2web/DataLookup/ServiceplatformenBase.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Drupal\os2web_datalookup\Plugin\os2web\DataLookup;
44

5-
use Drupal\Core\Extension\ExtensionPathResolver;
65
use Drupal\Core\Form\FormStateInterface;
76

87
/**
@@ -241,10 +240,10 @@ protected function getWsdlUrl() {
241240
// Anything that's not an absolute path or url will be resolved relative to
242241
// the location of the os2web_datalookup module.
243242
if (!preg_match('@^([a-z]+:/)?/@', $url)) {
244-
/** @var ExtensionPathResolver $extensionPathResolver */
243+
/** @var \Drupal\Core\Extension\ExtensionPathResolver $extensionPathResolver */
245244
$extensionPathResolver = \Drupal::service('extension.path.resolver');
246245
$path = realpath($extensionPathResolver->getPath('module', 'os2web_datalookup'));
247-
$url = 'file://'.$path.'/'.$url;
246+
$url = 'file://' . $path . '/' . $url;
248247
}
249248
return $url;
250249
}

0 commit comments

Comments
 (0)