Skip to content

Commit 5aaada2

Browse files
committed
Addressed security coverage application review suggestions https://www.drupal.org/project/projectapplications/issues/3497526#comment-15927229.
1 parent 9a2f3a6 commit 5aaada2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

modules/webform_openfisca_key_auth/webform_openfisca_key_auth.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* @file
5-
* Webform OpenFisca Key Authentication.
5+
* Hook implementations for the Webform OpenFisca - Authorization Key module.
66
*/
77

88
declare(strict_types=1);

src/OpenFisca/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class Client implements ClientInterface {
1919

2020
/**
21-
* Constructor.
21+
* Constructs a new \Drupal\webform_openfisca\OpenFisca\Client object.
2222
*
2323
* @param string $baseApiUri
2424
* The base API endpoint.

src/OpenFisca/ClientFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class ClientFactory implements ClientFactoryInterface {
1616

1717
/**
18-
* Constructor.
18+
* Constructs a new \Drupal\webform_openfisca\OpenFisca\ClientFactory object.
1919
*
2020
* @param \Drupal\Core\Http\ClientFactory $httpClientFactory
2121
* HTTP Client Factory service.

src/OpenFisca/Payload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class Payload {
2727
protected array $debugData = [];
2828

2929
/**
30-
* Constructor.
30+
* Constructs a new \Drupal\webform_openfisca\OpenFisca\Payload object.
3131
*/
3232
final public function __construct() {}
3333

src/RacContentHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class RacContentHelper implements RacContentHelperInterface {
1818

1919
/**
20-
* Constructor.
20+
* Constructs a new \Drupal\webform_openfisca\RacContentHelper object.
2121
*
2222
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
2323
* Entity Type Manager service.

src/WebformFormAlterBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class WebformFormAlterBase {
2222
use StringTranslationTrait;
2323

2424
/**
25-
* Constructor.
25+
* Constructs a new \Drupal\webform_openfisca\WebformFormAlterBase object.
2626
*
2727
* @param \Drupal\webform_openfisca\OpenFisca\ClientFactoryInterface $openFiscaClientFactory
2828
* OpenFisca connector.

src/WebformOpenFiscaSettings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class WebformOpenFiscaSettings {
138138
protected string $immediateExitKeys = '';
139139

140140
/**
141-
* Constructor.
141+
* Constructs a new \Drupal\webform_openfisca\WebformOpenFiscaSettings object.
142142
*
143143
* @param \Drupal\webform\WebformInterface $webform
144144
* The webform.

webform_openfisca.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* @file
5-
* Webform OpenFisca module.
5+
* Hook implementations for the Webform OpenFisca module.
66
*/
77

88
use Drupal\Core\Form\FormStateInterface;

0 commit comments

Comments
 (0)