Skip to content

Commit bca9f58

Browse files
committed
config: update oit.settings - phpcs fixes
1 parent 9f85806 commit bca9f58

5 files changed

Lines changed: 10 additions & 14 deletions

File tree

config/install/oit.settings.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
oit_403_message:
2-
sympa/unsubscribe/news: 'Please log in to complete the process of unsubscribing to news updates.'
3-
sympa/subscribe/news: 'Please log in to complete the process of subscribing to news updates.'
4-
sympa/unsubscribe/service_alert: 'Please log in to complete the process of unsubscribing to service alerts.'
5-
sympa/subscribe/service_alert: 'Please log in to complete the process of subscribing to service alerts.'
6-
71
# Request portal block UUIDs
82
request_portal_block_uuids:
93
issue: '04d5cc3e-8b9d-4bb7-8cab-16f162cb729a'

tests/src/Unit/Plugin/Filter/FilterEmailTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testLowercaseEmailSurroundedBySpaces(): void {
4848
*
4949
* @covers ::process
5050
*/
51-
public function testCapitalEEmailSurroundedBySpaces(): void {
51+
public function testCapitalEemailSurroundedBySpaces(): void {
5252
$result = $this->filter->process(' E-mail ', 'en');
5353
$this->assertInstanceOf(FilterProcessResult::class, $result);
5454
$this->assertEquals(' Email ', $result->getProcessedText());

tests/src/Unit/Plugin/Filter/FilterNoopenerTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ public function testLinkWithoutTargetBlankUnchanged(): void {
6464
}
6565

6666
/**
67-
* Tests that a greedy .* causes span to be placed before the last </a> when
68-
* two target="_blank" links exist on the same line (documents current behavior).
67+
* Tests that a greedy .* causes span to be placed before the last </a>.
68+
*
69+
* Two target="_blank" links exist on the same line (documents current).
6970
*
7071
* @covers ::process
7172
*/

tests/src/Unit/Plugin/GoogleSheetsProcessTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function testCustomProcessExtractsColumnsByKey(): void {
107107

108108
$this->assertArrayHasKey('header', $result);
109109
$this->assertArrayHasKey('rows', $result);
110-
// Columns a=0 → 'title', b=1 → 'body'
110+
// Columns a=0 → 'title', b=1 → 'body'.
111111
$this->assertEquals(['title', 'body'], $result['header']);
112112
$this->assertCount(2, $result['rows']);
113113
}
@@ -133,7 +133,7 @@ public function testInvalidProcessFallsBackToSs(): void {
133133
}
134134

135135
/**
136-
* Tests that non-string sheet_letters (null) results in no columns selected.
136+
* Tests that non-string sheet_letters (null) results in no columns.
137137
*
138138
* @covers ::__construct
139139
* @covers ::getProcessedData
@@ -150,7 +150,7 @@ public function testNullSheetLettersResultsInNoColumns(): void {
150150
}
151151

152152
/**
153-
* Tests that sheet_letters with extra spaces are trimmed and work correctly.
153+
* Tests that sheet_letters with extra spaces are trimmed and work.
154154
*
155155
* @covers ::__construct
156156
* @covers ::getProcessedData

tests/src/Unit/Plugin/ServiceHealthStatusTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,9 @@ public function testRemoveDuplicatesEmptyArrayReturnsEmpty(): void {
146146
}
147147

148148
/**
149-
* Tests serviceHealthStatusByKey returns array with keys 0, 1, 2 and
150-
* non-empty string values.
149+
* Tests serviceHealthStatusByKey returns array with keys 0, 1, 2.
150+
*
151+
* Non-empty string values.
151152
*
152153
* @covers ::serviceHealthStatusByKey
153154
*/

0 commit comments

Comments
 (0)