Skip to content

Commit 45effbc

Browse files
committed
bug symfony#13238 Fixed all permanently redirected and broken URLs (wouterj)
This PR was merged into the 4.4 branch. Discussion ---------- Fixed all permanently redirected and broken URLs I ran the linkcheck builder of the 4.4 docs and fixed all broken or permanently redirected links. Most of them are about moving to HTTPS. We can't run the linkcheck builder automatically: - Some docs use permanent redirects to redirect `current` to a specific version (seems really bad). We want to keep using "current" here - In a similair way, some sites allow i18n if you omit the locale from the URL, these are also permanently redirected - I don't want us to spam all the links every time GitHub actions runs :) Also note that Doctrine switched the "latest" version to Doctrine ORM 3.0. I've changed all these to "current" (i.e. 2.6 atm) instead. Commits ------- 7f8c72a Fixed all permanently redirected and broken URLs
2 parents 9611f07 + 7f8c72a commit 45effbc

File tree

111 files changed

+232
-242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+232
-242
lines changed

best_practices.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ You can even ignore them completely and continue using your own best practices
1010
and methodologies. Symfony is flexible enough to adapt to your needs.
1111

1212
This article assumes that you already have experience developing Symfony
13-
applications. If you don't, read first the rest of the `Symfony documentation`_.
13+
applications. If you don't, read first the :doc:`Getting Started </setup>`
14+
section of the documentation.
1415

1516
.. tip::
1617

@@ -440,7 +441,6 @@ That's why it's recommended to use raw URLs in tests instead of generating them
440441
from routes. Whenever a route changes, tests will break and you'll know that
441442
you must set up a redirection.
442443

443-
.. _`Symfony documentation`: https://symfony.com/doc
444444
.. _`Symfony Demo`: https://github.com/symfony/demo
445445
.. _`download Symfony`: https://symfony.com/download
446446
.. _`Composer`: https://getcomposer.org/

bundles/override.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,4 @@ For example, to override the translations defined in the
180180
``Resources/translations/FOSUserBundle.es.yml`` file of the FOSUserBundle,
181181
create a ``<your-project>/translations/FOSUserBundle.es.yml`` file.
182182

183-
.. _`the Doctrine documentation`: http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/inheritance-mapping.html#overrides
183+
.. _`the Doctrine documentation`: https://www.doctrine-project.org/projects/doctrine-orm/en/current/reference/inheritance-mapping.html#overrides

components/cache.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Advanced Usage
201201

202202
cache/*
203203

204-
.. _`PSR-6`: http://www.php-fig.org/psr/psr-6/
204+
.. _`PSR-6`: https://www.php-fig.org/psr/psr-6/
205205
.. _`Cache Contracts`: https://github.com/symfony/contracts/blob/master/Cache/CacheInterface.php
206206
.. _`Stampede prevention`: https://en.wikipedia.org/wiki/Cache_stampede
207207
.. _Probabilistic early expiration: https://en.wikipedia.org/wiki/Cache_stampede#Probabilistic_early_expiration

components/cache/adapters/memcached_adapter.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,8 @@ Available Options
296296
.. _`User Datagram Protocol (UDP)`: https://en.wikipedia.org/wiki/User_Datagram_Protocol
297297
.. _`no-delay`: https://en.wikipedia.org/wiki/TCP_NODELAY
298298
.. _`keep-alive`: https://en.wikipedia.org/wiki/Keepalive
299-
.. _`Memcached PHP extension`: http://php.net/manual/en/book.memcached.php
300-
.. _`predefined constants`: http://php.net/manual/en/memcached.constants.php
299+
.. _`Memcached PHP extension`: https://www.php.net/manual/en/book.memcached.php
300+
.. _`predefined constants`: https://www.php.net/manual/en/memcached.constants.php
301301
.. _`Memcached server`: https://memcached.org/
302-
.. _`Memcached`: http://php.net/manual/en/class.memcached.php
302+
.. _`Memcached`: https://www.php.net/manual/en/class.memcached.php
303303
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name

components/cache/adapters/pdo_doctrine_dbal_adapter.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
PDO & Doctrine DBAL Cache Adapter
88
=================================
99

10-
This adapter stores the cache items in an SQL database. It requires a `PDO`_,
10+
This adapter stores the cache items in an SQL database. It requires a :phpclass:`PDO`,
1111
`Doctrine DBAL Connection`_, or `Data Source Name (DSN)`_ as its first parameter, and
1212
optionally a namespace, default cache lifetime, and options array as its second,
1313
third, and forth parameters::
@@ -48,6 +48,5 @@ your code.
4848
allowing for manual :ref:`pruning of expired cache entries <component-cache-cache-pool-prune>` by
4949
calling its ``prune()`` method.
5050

51-
.. _`PDO`: http://php.net/manual/en/class.pdo.php
5251
.. _`Doctrine DBAL Connection`: https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Connection.php
5352
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name

components/cache/adapters/php_files_adapter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ directory path as constructor arguments::
6767
allowing for manual :ref:`pruning of expired cache entries <component-cache-cache-pool-prune>` by
6868
calling its ``prune()`` method.
6969

70-
.. _`OPcache`: http://php.net/manual/en/book.opcache.php
70+
.. _`OPcache`: https://www.php.net/manual/en/book.opcache.php

components/cache/adapters/proxy_adapter.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ and optionally a namespace and default cache lifetime as its second and third pa
3636
$defaultLifetime = 0
3737
);
3838

39-
.. _`PSR-6`: http://www.php-fig.org/psr/psr-6/
40-
.. _`cache item pool interface`: http://www.php-fig.org/psr/psr-6/#cacheitempoolinterface
39+
.. _`PSR-6`: https://www.php-fig.org/psr/psr-6/
40+
.. _`cache item pool interface`: https://www.php-fig.org/psr/psr-6/#cacheitempoolinterface

components/cache/psr6_psr16_adapters.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ this use-case::
9191

9292
The ``Psr16Cache`` class was introduced in Symfony 4.3.
9393

94-
.. _`PSR-16`: http://www.php-fig.org/psr/psr-16/
94+
.. _`PSR-16`: https://www.php-fig.org/psr/psr-16/

components/dependency_injection.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,4 @@ Learn More
318318
/components/dependency_injection/*
319319
/service_container/*
320320

321-
.. _`PSR-11`: http://www.php-fig.org/psr/psr-11/
321+
.. _`PSR-11`: https://www.php-fig.org/psr/psr-11/

components/dotenv.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@ Embed commands via ``$()`` (not supported on Windows):
170170

171171
Note that using ``$()`` might not work depending on your shell.
172172

173-
.. _twelve-factor applications: http://www.12factor.net/
173+
.. _twelve-factor applications: https://12factor.net/

components/event_dispatcher.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -531,5 +531,5 @@ Learn More
531531

532532
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
533533
.. _Observer: https://en.wikipedia.org/wiki/Observer_pattern
534-
.. _Closures: https://php.net/manual/en/functions.anonymous.php
535-
.. _PHP callable: https://php.net/manual/en/language.pseudo-types.php#language.types.callback
534+
.. _Closures: https://www.php.net/manual/en/functions.anonymous.php
535+
.. _PHP callable: https://www.php.net/manual/en/language.pseudo-types.php#language.types.callback

components/finder.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ The contents of returned files can be read with
407407
.. _`fluent interface`: https://en.wikipedia.org/wiki/Fluent_interface
408408
.. _`symbolic links`: https://en.wikipedia.org/wiki/Symbolic_link
409409
.. _`Version Control Systems`: https://en.wikipedia.org/wiki/Version_control
410-
.. _`PHP wrapper for URL-style protocols`: https://php.net/manual/en/wrappers.php
411-
.. _`PHP streams`: https://php.net/streams
410+
.. _`PHP wrapper for URL-style protocols`: https://www.php.net/manual/en/wrappers.php
411+
.. _`PHP streams`: https://www.php.net/streams
412412
.. _`IEC standard`: https://physics.nist.gov/cuu/Units/binary.html
413413
.. _`natural sort order`: https://en.wikipedia.org/wiki/Natural_sort_order

components/http_client.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ However, using ``MockResponse`` allows simulating chunked responses and timeouts
10321032

10331033
$mockResponse = new MockResponse($body());
10341034

1035-
.. _`cURL PHP extension`: https://php.net/curl
1035+
.. _`cURL PHP extension`: https://www.php.net/curl
10361036
.. _`PSR-17`: https://www.php-fig.org/psr/psr-17/
10371037
.. _`PSR-18`: https://www.php-fig.org/psr/psr-18/
10381038
.. _`HTTPlug`: https://github.com/php-http/httplug/#readme

components/http_foundation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -725,5 +725,5 @@ Learn More
725725

726726
.. _nginx: https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/
727727
.. _Apache: https://tn123.org/mod_xsendfile/
728-
.. _`JSON Hijacking`: http://haacked.com/archive/2009/06/25/json-hijacking.aspx
728+
.. _`JSON Hijacking`: https://haacked.com/archive/2009/06/25/json-hijacking.aspx/
729729
.. _OWASP guidelines: https://cheatsheetseries.owasp.org/cheatsheets/AJAX_Security_Cheat_Sheet.html#always-return-json-with-an-object-on-the-outside

components/http_foundation/session_configuration.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ All native save handlers are internal to PHP and as such, have no public facing
2929
They must be configured by ``php.ini`` directives, usually ``session.save_path`` and
3030
potentially other driver specific directives. Specific details can be found in
3131
the docblock of the ``setOptions()`` method of each class. For instance, the one
32-
provided by the Memcached extension can be found on `php.net/memcached.setoption`_
32+
provided by the Memcached extension can be found on :phpmethod:`php.net <Memcached::setOption>`.
3333

3434
While native save handlers can be activated by directly using
3535
``ini_set('session.save_handler', $name);``, Symfony provides a convenient way to
@@ -286,6 +286,5 @@ particular cookie by reading the ``getLifetime()`` method::
286286
The expiry time of the cookie can be determined by adding the created
287287
timestamp and the lifetime.
288288

289-
.. _`php.net/session.customhandler`: https://php.net/session.customhandler
290-
.. _`php.net/session.configuration`: https://php.net/session.configuration
291-
.. _`php.net/memcached.setoption`: https://php.net/memcached.setoption
289+
.. _`php.net/session.customhandler`: https://www.php.net/session.customhandler
290+
.. _`php.net/session.configuration`: https://www.php.net/session.configuration

components/http_kernel.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -777,11 +777,11 @@ Learn more
777777

778778
/reference/events
779779

780-
.. _reflection: https://php.net/manual/en/book.reflection.php
780+
.. _reflection: https://www.php.net/manual/en/book.reflection.php
781781
.. _FOSRestBundle: https://github.com/friendsofsymfony/FOSRestBundle
782-
.. _`PHP FPM`: https://php.net/manual/en/install.fpm.php
782+
.. _`PHP FPM`: https://www.php.net/manual/en/install.fpm.php
783783
.. _`SensioFrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html
784784
.. _`@ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
785785
.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view.html
786786
.. _`EmailSenderListener`: https://github.com/symfony/swiftmailer-bundle/blob/master/EventListener/EmailSenderListener.php
787-
.. _variadic: http://php.net/manual/en/functions.arguments.php
787+
.. _variadic: https://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list

components/intl.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,8 @@ Learn more
406406
/reference/forms/types/locale
407407
/reference/forms/types/timezone
408408

409-
.. _intl extension: https://php.net/manual/en/book.intl.php
410-
.. _install the intl extension: https://php.net/manual/en/intl.setup.php
409+
.. _intl extension: https://www.php.net/manual/en/book.intl.php
410+
.. _install the intl extension: https://www.php.net/manual/en/intl.setup.php
411411
.. _ICU library: http://site.icu-project.org/
412412
.. _`Unicode ISO 15924 Registry`: https://www.unicode.org/iso15924/iso15924-codes.html
413413
.. _`ISO 3166-1 alpha-2`: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

components/lock.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -685,8 +685,8 @@ are still running.
685685

686686
.. _`ACID`: https://en.wikipedia.org/wiki/ACID
687687
.. _`locks`: https://en.wikipedia.org/wiki/Lock_(computer_science)
688-
.. _`PHP semaphore functions`: https://php.net/manual/en/book.sem.php
689-
.. _`PDO`: https://php.net/pdo
688+
.. _`PHP semaphore functions`: https://www.php.net/manual/en/book.sem.php
689+
.. _`PDO`: https://www.php.net/pdo
690690
.. _`Doctrine DBAL Connection`: https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Connection.php
691691
.. _`Data Source Name (DSN)`: https://en.wikipedia.org/wiki/Data_source_name
692692
.. _`ZooKeeper`: https://zookeeper.apache.org/

components/messenger.rst

+2
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ that will do the required processing for your message::
124124
}
125125
}
126126

127+
.. _messenger-envelopes:
128+
127129
Adding Metadata to Messages (Envelopes)
128130
---------------------------------------
129131

components/mime.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,4 +302,4 @@ You can register your own MIME type guesser by creating a class that implements
302302

303303
.. _`MIME`: https://en.wikipedia.org/wiki/MIME
304304
.. _`MIME types`: https://en.wikipedia.org/wiki/Media_type
305-
.. _`fileinfo extension`: https://php.net/fileinfo
305+
.. _`fileinfo extension`: https://www.php.net/fileinfo

components/phpunit_bridge.rst

+6-7
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ message contains the ``"foobar"`` string.
223223
Making Tests Fail
224224
~~~~~~~~~~~~~~~~~
225225

226-
By default, any non-legacy-tagged or any non-`@-silenced`_ deprecation
227-
notices will make tests fail. Alternatively, you can configure an
228-
arbitrary threshold by setting ``SYMFONY_DEPRECATIONS_HELPER`` to
226+
By default, any non-legacy-tagged or any non-`@-silenced <@-silencing operator>`_
227+
deprecation notices will make tests fail. Alternatively, you can configure
228+
an arbitrary threshold by setting ``SYMFONY_DEPRECATIONS_HELPER`` to
229229
``max[total]=320`` for instance. It will make the tests fails only if a
230230
higher number of deprecation notices is reached (``0`` is the default
231231
value).
@@ -971,11 +971,10 @@ not find the SUT:
971971
.. _`PHPUnit`: https://phpunit.de
972972
.. _`PHPUnit event listener`: https://phpunit.de/manual/current/en/extending-phpunit.html#extending-phpunit.PHPUnit_Framework_TestListener
973973
.. _`PHPUnit's assertStringMatchesFormat()`: https://phpunit.de/manual/current/en/appendixes.assertions.html#appendixes.assertions.assertStringMatchesFormat
974-
.. _`PHP error handler`: https://php.net/manual/en/book.errorfunc.php
974+
.. _`PHP error handler`: https://www.php.net/manual/en/book.errorfunc.php
975975
.. _`environment variable`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.php-ini-constants-variables
976-
.. _`@-silencing operator`: https://php.net/manual/en/language.operators.errorcontrol.php
977-
.. _`@-silenced`: https://php.net/manual/en/language.operators.errorcontrol.php
976+
.. _`@-silencing operator`: https://www.php.net/manual/en/language.operators.errorcontrol.php
978977
.. _`Travis CI`: https://travis-ci.org/
979978
.. _`test listener`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.test-listeners
980979
.. _`@covers`: https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.annotations.covers
981-
.. _`PHP namespace resolutions rules`: https://php.net/manual/en/language.namespaces.rules.php
980+
.. _`PHP namespace resolutions rules`: https://www.php.net/manual/en/language.namespaces.rules.php

components/serializer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ Learn more
15071507
.. _RFC3339: https://tools.ietf.org/html/rfc3339#section-5.8
15081508
.. _JSON: http://www.json.org/
15091509
.. _XML: https://www.w3.org/XML/
1510-
.. _YAML: http://yaml.org/
1510+
.. _YAML: https://yaml.org/
15111511
.. _CSV: https://tools.ietf.org/html/rfc4180
15121512
.. _`RFC 7807`: https://tools.ietf.org/html/rfc7807
15131513
.. _`Value Objects`: https://en.wikipedia.org/wiki/Value_object

components/validator.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ Learn More
8888
/validation
8989
/validation/*
9090

91-
.. _`JSR-303 Bean Validation specification`: http://jcp.org/en/jsr/detail?id=303
91+
.. _`JSR-303 Bean Validation specification`: https://jcp.org/en/jsr/detail?id=303

components/var_exporter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ created by using the special ``"\0"`` property name to define their internal val
128128
"\0" => [$inputArray]
129129
]);
130130

131-
.. _`OPcache`: https://php.net/opcache
131+
.. _`OPcache`: https://www.php.net/opcache
132132
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/

components/yaml.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,6 @@ Learn More
459459

460460
yaml/*
461461

462-
.. _`YAML`: http://yaml.org/
463-
.. _`YAML 1.2 version specification`: http://yaml.org/spec/1.2/spec.html
464-
.. _`ISO-8601`: http://www.iso.org/iso/iso8601
462+
.. _`YAML`: https://yaml.org/
463+
.. _`YAML 1.2 version specification`: https://yaml.org/spec/1.2/spec.html
464+
.. _`ISO-8601`: https://www.iso.org/iso-8601-date-and-time-format.html

components/yaml/yaml_format.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,6 @@ The following YAML features are not supported by the Symfony Yaml component:
333333
* Using sequence-like syntax for mapping elements (example: ``{foo, bar}``; use
334334
``{foo: ~, bar: ~}`` instead).
335335

336-
.. _`ISO-8601`: http://www.iso.org/iso/iso8601
337-
.. _`YAML website`: http://yaml.org/
338-
.. _`YAML specification`: http://www.yaml.org/spec/1.2/spec.html
336+
.. _`ISO-8601`: https://www.iso.org/iso-8601-date-and-time-format.html
337+
.. _`YAML website`: https://yaml.org/
338+
.. _`YAML specification`: https://www.yaml.org/spec/1.2/spec.html

configuration/micro_kernel_trait.rst

+2-6
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ That's it! To test it, start the :doc:`Symfony Local Web Server
8080
8181
$ symfony server:start
8282
83-
Then see the JSON response in your browser:
84-
85-
http://localhost:8000/random/10
83+
Then see the JSON response in your browser: http://localhost:8000/random/10
8684

8785
The Methods of a "Micro" Kernel
8886
-------------------------------
@@ -332,6 +330,4 @@ As before you can use the :doc:`Symfony Local Web Server
332330
cd public/
333331
$ symfony server:start
334332
335-
Then visit the page in your browser:
336-
337-
http://localhost:8000/random/10
333+
Then visit the page in your browser: http://localhost:8000/random/10

contributing/code/conventions.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ notices. Silencing swaps this behavior and allows users to opt-in when they are
125125
ready to cope with them (by adding a custom error handler like the one used by
126126
the Web Debug Toolbar or by the PHPUnit bridge).
127127

128-
.. _`@-silencing operator`: https://php.net/manual/en/language.operators.errorcontrol.php
129-
130128
When deprecating a whole class the ``trigger_error()`` call should be placed
131129
between the namespace and the use declarations, like in this example from
132130
`ServiceRouterLoader`_::
@@ -184,3 +182,5 @@ of the impacted component::
184182
* Removed the `Deprecated` class, use `Replacement` instead.
185183

186184
This task is mandatory and must be done in the same pull request.
185+
186+
.. _`@-silencing operator`: https://www.php.net/manual/en/language.operators.errorcontrol.php

contributing/code/pull_requests.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ before merging.
415415

416416
.. _ProGit: https://git-scm.com/book
417417
.. _GitHub: https://github.com/join
418-
.. _`GitHub's documentation`: https://help.github.com/articles/ignoring-files
418+
.. _`GitHub's documentation`: https://help.github.com/github/using-git/ignoring-files
419419
.. _Symfony repository: https://github.com/symfony/symfony
420420
.. _`documentation repository`: https://github.com/symfony/symfony-docs
421421
.. _`fabbot`: https://fabbot.io
@@ -424,4 +424,4 @@ before merging.
424424
.. _`searching on GitHub`: https://github.com/symfony/symfony/issues?q=+is%3Aopen+
425425
.. _`Symfony Slack`: https://symfony.com/slack-invite
426426
.. _`Travis-CI`: https://travis-ci.org/symfony/symfony
427-
.. _`draft status`: https://help.github.com/en/articles/about-pull-requests#draft-pull-requests
427+
.. _`draft status`: https://help.github.com/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests

contributing/code/standards.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ License
281281
.. _`PSR-1`: https://www.php-fig.org/psr/psr-1/
282282
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/
283283
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4/
284-
.. _`identical comparison`: https://php.net/manual/en/language.operators.comparison.php
284+
.. _`identical comparison`: https://www.php.net/manual/en/language.operators.comparison.php
285285
.. _`Yoda conditions`: https://en.wikipedia.org/wiki/Yoda_conditions
286286
.. _`camelCase`: https://en.wikipedia.org/wiki/Camel_case
287287
.. _`UpperCamelCase`: https://en.wikipedia.org/wiki/Camel_case

contributing/code/tests.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ what's going on and if the tests are broken because of the new code.
5555
to see colored test results.
5656

5757
.. _`install Composer`: https://getcomposer.org/download/
58-
.. _Cmder: http://cmder.net/
58+
.. _Cmder: https://cmder.net/
5959
.. _ConEmu: https://conemu.github.io/
6060
.. _ANSICON: https://github.com/adoxa/ansicon/releases
6161
.. _Mintty: https://mintty.github.io/

contributing/code_of_conduct/code_of_conduct.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Attribution
7777
-----------
7878

7979
This Code of Conduct is adapted from the `Contributor Covenant`_, version 1.4,
80-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
80+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct/
8181

8282
Related Documents
8383
-----------------

contributing/community/releases.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,6 @@ period to upgrade. Companies wanting more stability use the LTS versions: a new
132132
version is published every two years and there is a year to upgrade.
133133

134134
.. _`semantic versioning`: https://semver.org/
135-
.. _`Subscribe to Symfony Roadmap notifications`: https://symfony.com/account
136-
.. _`Symfony Roadmap`: https://symfony.com/roadmap#checker
135+
.. _`Subscribe to Symfony Roadmap notifications`: https://symfony.com/account/notifications
136+
.. _`Symfony Roadmap`: https://symfony.com/releases
137137
.. _`professional Symfony support`: https://sensiolabs.com/

contributing/community/reviews.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ Pick a pull request from the `PRs in need of review`_ and follow these steps:
213213
.. _Symfony issue tracker: https://github.com/symfony/symfony/issues
214214
.. _`Symfony skeleton`: https://github.com/symfony/skeleton
215215
.. _`Symfony website skeleton`: https://github.com/symfony/website-skeleton
216-
.. _create a GitHub account: https://help.github.com/articles/signing-up-for-a-new-github-account/
216+
.. _create a GitHub account: https://help.github.com/github/getting-started-with-github/signing-up-for-a-new-github-account
217217
.. _bug reports in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3A%22Bug%22+label%3A%22Status%3A+Needs+Review%22+
218-
.. _PRs in need of review: https://github.com/symfony/symfony/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+label%3A%22Status%3A+Needs+Review%22+
219-
.. _Symfony Roadmap: https://symfony.com/roadmap
218+
.. _PRs in need of review: https://github.com/symfony/symfony/pulls?q=is%3Aopen+is%3Apr+label%3A%22Status%3A+Needs+Review%22
219+
.. _Symfony Roadmap: https://symfony.com/releases
220220
.. _Carson Bot: https://github.com/carsonbot/carsonbot
221221
.. _`Needs Review`: https://github.com/symfony/symfony/labels/Status%3A%20Needs%20Review

0 commit comments

Comments
 (0)