8000 Merge branch '4.4' into 5.2 · symfony/symfony@4e3912e · GitHub
[go: up one dir, main page]

Skip to content

Commit 4e3912e

Browse files
Merge branch '4.4' into 5.2
* 4.4: [HttpKernel] Fixes tests for PHP7.4+ [Filesystem] fix readlink for Windows
2 parents 7220998 + 54bee29 commit 4e3912e

File tree

39 files changed

+154
-149
lines changed

39 files changed

+154
-149
lines changed

src/Symfony/Bundle/WebProfilerBundle/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vulnerabilities in your project.
1010
Resources
1111
---------
1212

13-
* [Contributing](https://symfony.co F438 m/doc/current/contributing/index.html)
14-
* [Report issues](https://github.com/symfony/symfony/issues) and
15-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
16-
in the [main Symfony repository](https://github.com/symfony/symfony)
13+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
14+
* [Report issues](https://github.com/symfony/symfony/issues) and
15+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
16+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/ErrorHandler/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $data = ErrorHandler::call(static function () use ($filename, $datetimeFormat) {
3838
Resources
3939
---------
4040

41-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
42-
* [Report issues](https://github.com/symfony/symfony/issues) and
43-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
44-
in the [main Symfony repository](https://github.com/symfony/symfony)
41+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
42+
* [Report issues](https://github.com/symfony/symfony/issues) and
43+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
44+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Filesystem/Filesystem.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,14 +399,14 @@ public function readlink(string $path, bool $canonicalize = false)
399399
return null;
400400
}
401401

402-
if ('\\' === \DIRECTORY_SEPARATOR) {
402+
if ('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70410) {
403403
$path = readlink($path);
404404
}
405405

406406
return realpath($path);
407407
}
408408

409-
if ('\\' === \DIRECTORY_SEPARATOR) {
409+
if ('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70400) {
410410
return realpath($path);
411411
}
412412

src/Symfony/Component/Filesystem/Tests/FilesystemTest.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public function testRemoveCleansInvalidLinks()
376376

377377
// create symlink to nonexistent dir
378378
rmdir($basePath.'dir');
379-
$this->assertFalse('\\' === \DIRECTORY_SEPARATOR ? @readlink($basePath.'dir-link') : is_dir($basePath.'dir-link'));
379+
$this->assertFalse('\\' === \DIRECTORY_SEPARATOR && \PHP_VERSION_ID < 70400 ? @readlink($basePath.'dir-link') : is_dir($basePath.'dir-link'));
380380

381381
$this->filesystem->remove($basePath);
382382

@@ -1076,7 +1076,12 @@ public function testReadAbsoluteLink()
10761076
$this->filesystem->symlink($link1, $link2);
10771077

10781078
$this->assertEquals($file, $this->filesystem->readlink($link1));
1079-
$this->assertEquals($link1, $this->filesystem->readlink($link2));
1079+
1080+
if (!('\\' == \DIRECTORY_SEPARATOR && \PHP_MAJOR_VERSION === 7 && \PHP_MINOR_VERSION === 3)) {
1081+
// Skip for Windows with PHP 7.3.*
1082+
$this->assertEquals($link1, $this->filesystem->readlink($link2));
1083+
}
1084+
10801085
$this->assertEquals($file, $this->filesystem->readlink($link1, true));
10811086
$this->assertEquals($file, $this->filesystem->readlink($link2, true));
10821087
$this->assertEquals($file, $this->filesystem->readlink($file, true));

src/Symfony/Component/HttpKernel/HttpCache/Store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ private function load(string $key): ?string
347347
{
348348
$path = $this->getPath($key);
349349

350-
return is_file($path) && false !== ($contents = file_get_contents($path)) ? $contents : null;
350+
return is_file($path) && false !== ($contents = @file_get_contents($path)) ? $contents : null;
351351
}
352352

353353
/**

src/Symfony/Component/Inflector/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Inflector component converts words between their singular and plural forms
1212
Resources
1313
---------
1414

15-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
16-
* [Report issues](https://github.com/symfony/symfony/issues) and
17-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
18-
in the [main Symfony repository](https://github.com/symfony/symfony)
15+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
16+
* [Report issues](https://github.com/symfony/symfony/issues) and
17+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
18+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Google/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Google Gmail integration for Symfony Mailer.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Mailchimp/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Mandrill integration for Symfony Mailer.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Mailgun/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Mailgun integration for Symfony Mailer.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Mailjet/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ MAILER_DSN=mailjet+smtp://$PUBLIC_KEY:$PRIVATE_KEY@default
1515
Resources
1616
---------
1717

18-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
19-
* [Report issues](https://github.com/symfony/symfony/issues) and
20-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
21-
in the [main Symfony repository](https://github.com/symfony/symfony)
18+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
19+
* [Report issues](https://github.com/symfony/symfony/issues) and
20+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
21+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Postmark/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Postmark integration for Symfony Mailer.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Sendgrid/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Sendgrid integration for Symfony Mailer.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Mailer/Bridge/Sendinblue/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For more informations, you can refer to [Sendinblue API documentation](https://d
4646
Resources
4747
---------
4848

49-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
50-
* [Report issues](https://github.com/symfony/symfony/issues) and
51-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
52-
in the [main Symfony repository](https://github.com/symfony/symfony)
49+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
50+
* [Report issues](https://github.com/symfony/symfony/issues) and
51+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
52+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Messenger/Bridge/AmazonSqs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Amazon SQS integration for Symfony Messenger.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Messenger/Bridge/Amqp/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides AMQP integration for Symfony Messenger.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Messenger/Bridge/Beanstalkd/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Full DSN with options: `beanstalkd://<ip>:<port>?tube_name=<name>&timeout=<timeo
88
Resources
99
---------
1010

11-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
12-
* [Report issues](https://github.com/symfony/symfony/issues) and
13-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
14-
in the [main Symfony repository](https://github.com/symfony/symfony)
11+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
12+
* [Report issues](https://github.com/symfony/symfony/issues) and
13+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
14+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Messenger/Bridge/Doctrine/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Doctrine integration for Symfony Messenger.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Messenger/Bridge/Redis/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides Redis integration for Symfony Messenger.
66
Resources
77
---------
88

9-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10-
* [Report issues](https://github.com/symfony/symfony/issues) and
11-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12-
in the [main Symfony repository](https://github.com/symfony/symfony)
9+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
10+
* [Report issues](https://github.com/symfony/symfony/issues) and
11+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
12+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Discord/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ where:
1717
Resources
1818
---------
1919

20-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21-
* [Report issues](https://github.com/symfony/symfony/issues) and
22-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23-
in the [main Symfony repository](https://github.com/symfony/symfony)
20+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21+
* [Report issues](https://github.com/symfony/symfony/issues) and
22+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Esendex/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ See Esendex documentation at https://developers.esendex.com/api-reference#smsapi
2121
Resources
2222
---------
2323

24-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
25-
* [Report issues](https://github.com/symfony/symfony/issues) and
26-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
27-
in the [main Symfony repository](https://github.com/symfony/symfony)
24+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
25+
* [Report issues](https://github.com/symfony/symfony/issues) and
26+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
27+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Firebase/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ where:
1717
Resources
1818
---------
1919

20-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21-
* [Report issues](https://github.com/symfony/symfony/issues) and
22-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23-
in the [main Symfony repository](https://github.com/symfony/symfony)
20+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21+
* [Report issues](https://github.com/symfony/symfony/issues) and
22+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/FreeMobile/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ See your account info at https://mobile.free.fr/moncompte/index.php?page=options
2323
Resources
2424
---------
2525

26-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
27-
* [Report issues](https://github.com/symfony/symfony/issues) and
28-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
29-
in the [main Symfony repository](https://github.com/symfony/symfony)
26+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
27+
* [Report issues](https://github.com/symfony/symfony/issues) and
28+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
29+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/GoogleChat/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ where:
1919
Resources
2020
---------
2121

22-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23-
* [Report issues](https://github.com/symfony/symfony/issues) and
24-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25-
in the [main Symfony repository](https://github.com/symfony/symfony)
22+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23+
* [Report issues](https://github.com/symfony/symfony/issues) and
24+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Infobip/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ where:
1818
Resources
1919
---------
2020

21-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
22-
* [Report issues](https://github.com/symfony/symfony/issues) and
23-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
24-
in the [main Symfony repository](https://github.com/symfony/symfony)
21+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
22+
* [Report issues](https://github.com/symfony/symfony/issues) and
23+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
24+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/LinkedIn/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ where:
1717
Resources
1818
---------
1919

20-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21-
* [Report issues](https://github.com/symfony/symfony/issues) and
22-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23-
in the [main Symfony repository](https://github.com/symfony/symfony)
20+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21+
* [Report issues](https://github.com/symfony/symfony/issues) and
22+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Mattermost/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ where:
1919
Resources
2020
---------
2121

22-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23-
* [Report issues](https://github.com/symfony/symfony/issues) and
24-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25-
in the [main Symfony repository](https://github.com/symfony/symfony)
22+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23+
* [Report issues](https://github.com/symfony/symfony/issues) and
24+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Mobyt/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ where:
1919
Resources
2020
---------
2121

22-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23-
* [Report issues](https://github.com/symfony/symfony/issues) and
24-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25-
in the [main Symfony repository](https://github.com/symfony/symfony)
22+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23+
* [Report issues](https://github.com/symfony/symfony/issues) and
24+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Nexmo/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ where:
1818
Resources
1919
---------
2020

21-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
22-
* [Report issues](https://github.com/symfony/symfony/issues) and
23-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
24-
in the [main Symfony repository](https://github.com/symfony/symfony)
21+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
22+
* [Report issues](https://github.com/symfony/symfony/issues) and
23+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
24+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/OvhCloud/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ where:
1919
Resources
2020
---------
2121

22-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23-
* [Report issues](https://github.com/symfony/symfony/issues) and
24-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25-
in the [main Symfony repository](https://github.com/symfony/symfony)
22+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23+
* [Report issues](https://github.com/symfony/symfony/issues) and
24+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/RocketChat/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ where:
1717
Resources
1818
---------
1919

20-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21-
* [Report issues](https://github.com/symfony/symfony/issues) and
22-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23-
in the [main Symfony repository](https://github.com/symfony/symfony)
20+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
21+
* [Report issues](https://github.com/symfony/symfony/issues) and
22+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
23+
in the [main Symfony repository](https://github.com/symfony/symfony)

src/Symfony/Component/Notifier/Bridge/Sendinblue/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See more info at https://developers.sendinblue.com/reference#sendtransacsms
1919
Resources
2020
---------
2121

22-
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23-
* [Report issues](https://github.com/symfony/symfony/issues) and
24-
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25-
in the [main Symfony repository](https://github.com/symfony/symfony)
22+
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
23+
* [Report issues](https://github.com/symfony/symfony/issues) and
24+
[send Pull Requests](https://github.com/symfony/symfony/pulls)
25+
in the [main Symfony repository](https://github.com/symfony/symfony)

0 commit comments

Comments
 (0)
0