Skip to content

Commit 7455557

Browse files
committed
Merge branch '2.8' into 3.4
* 2.8: Use the proper path of version 2.x Added some minor explanation about 308 code Use 308 to ensure http method is preserved Fixed a minor error in form collections example fix(Extractor): ExtractorInterface called Update finder.rst Use HTTPS instead of HTTP outside XML
2 parents 0cde555 + f70883a commit 7455557

Some content is hidden

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

55 files changed

+126
-129
lines changed

best_practices/business-logic.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,6 @@ Next: :doc:`/best_practices/controllers`
366366
.. _`full definition`: https://en.wikipedia.org/wiki/Business_logic
367367
.. _`Doctrine project`: http://www.doctrine-project.org/
368368
.. _`fixture class`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html#writing-simple-fixtures
369-
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
370-
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
369+
.. _`PSR-1`: https://www.php-fig.org/psr/psr-1/
370+
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/
371371
.. _`PHP-CS-Fixer`: https://github.com/FriendsOfPHP/PHP-CS-Fixer

best_practices/creating-the-project.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,6 @@ structure of Symfony, you can
173173
Next: :doc:`/best_practices/configuration`
174174

175175
.. _`Composer`: https://getcomposer.org/
176-
.. _`Phar extension`: http://php.net/manual/en/intro.phar.php
176+
.. _`Phar extension`: https://php.net/manual/en/intro.phar.php
177177
.. _`public checksums repository`: https://github.com/sensiolabs/checksums
178178
.. _`these steps`: http://fabien.potencier.org/signing-project-releases.html

bundles/best_practices.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -450,9 +450,9 @@ Learn more
450450
* :doc:`/bundles/extension`
451451
* :doc:`/bundles/configuration`
452452

453-
.. _`PSR-0`: http://www.php-fig.org/psr/psr-0/
454-
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
455-
.. _`Semantic Versioning Standard`: http://semver.org/
453+
.. _`PSR-0`: https://www.php-fig.org/psr/psr-0/
454+
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4/
455+
.. _`Semantic Versioning Standard`: https://semver.org/
456456
.. _`Packagist`: https://packagist.org/
457-
.. _`choose any license`: http://choosealicense.com/
457+
.. _`choose any license`: https://choosealicense.com/
458458
.. _`valid license identifier`: https://spdx.org/licenses/

components/class_loader.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ Learn More
6868

6969
class_loader/cache_class_loader
7070

71-
.. _PSR-0: http://www.php-fig.org/psr/psr-0/
72-
.. _PSR-4: http://www.php-fig.org/psr/psr-4/
73-
.. _`autoloading mechanism`: http://php.net/manual/en/language.oop5.autoload.php
71+
.. _PSR-0: https://www.php-fig.org/psr/psr-0/
72+
.. _PSR-4: https://www.php-fig.org/psr/psr-4/
73+
.. _`autoloading mechanism`: https://php.net/manual/en/language.oop5.autoload.php
7474
.. _Packagist: https://packagist.org/packages/symfony/class-loader
7575
.. _`class loading optimizations`: https://getcomposer.org/doc/articles/autoloader-optimization.md

components/class_loader/class_loader.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ the ``doctrine-common`` directory. If not found, it will then fallback to
7171
the default ``Doctrine`` directory (the last one configured) before giving
7272
up. The order of the prefix registrations is significant in this case.
7373

74-
.. _PEAR: http://pear.php.net/manual/en/standards.naming.php
75-
.. _PSR-0: http://www.php-fig.org/psr/psr-0/
74+
.. _PEAR: https://pear.php.net/manual/en/standards.naming.php
75+
.. _PSR-0: https://www.php-fig.org/psr/psr-0/

components/class_loader/class_map_generator.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ is the same as in the example above)::
123123
__DIR__.'/class_map.php'
124124
);
125125

126-
.. _`PSR-0`: http://www.php-fig.org/psr/psr-0
127-
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4
126+
.. _`PSR-0`: https://www.php-fig.org/psr/psr-0
127+
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4
128128
.. _`Composer`: https://getcomposer.org

components/class_loader/map_class_loader.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ an instance of the ``MapClassLoader`` class::
3838

3939
$loader->register();
4040

41-
.. _PSR-0: http://www.php-fig.org/psr/psr-0/
41+
.. _PSR-0: https://www.php-fig.org/psr/psr-0/

components/class_loader/psr4_class_loader.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ tell the class loader where to look for classes with the
5858
``Symfony\Component\Yaml\`` namespace prefix. After registering the autoloader,
5959
the Yaml component is ready to be used.
6060

61-
.. _PSR-4: http://www.php-fig.org/psr/psr-4/
61+
.. _PSR-4: https://www.php-fig.org/psr/psr-4/

components/console/logger.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ soon as any error message has been logged during the execution of the command.
114114
This is useful to decide which status code to return as the result of executing
115115
the command.
116116

117-
.. _PSR-3: http://www.php-fig.org/psr/psr-3/
117+
.. _PSR-3: https://www.php-fig.org/psr/psr-3/

components/event_dispatcher.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,6 @@ Learn More
513513
* :ref:`The kernel.event_subscriber tag <dic-tags-kernel-event-subscriber>`
514514

515515
.. _Mediator: https://en.wikipedia.org/wiki/Mediator_pattern
516-
.. _Closures: http://php.net/manual/en/functions.anonymous.php
517-
.. _PHP callable: http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback
516+
.. _Closures: https://php.net/manual/en/functions.anonymous.php
517+
.. _PHP callable: https://php.net/manual/en/language.pseudo-types.php#language.types.callback
518518
.. _Packagist: https://packagist.org/packages/symfony/event-dispatcher

components/finder.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ It's also possible to ignore directories that you don't have permission to read:
118118
As the Finder uses PHP iterators, you can pass any URL with a supported
119119
`protocol`_::
120120

121+
// always add a trailing slash when looking for in the FTP root dir
122+
$finder->in('ftp://example.com/');
123+
124+
// you can also look for in a FTP directory
121125
$finder->in('ftp://example.com/pub/');
122126

123127
And it also works with user-defined streams::
@@ -321,8 +325,8 @@ The contents of returned files can be read with
321325
// ...
322326
}
323327

324-
.. _strtotime: http://www.php.net/manual/en/datetime.formats.php
325-
.. _protocol: http://www.php.net/manual/en/wrappers.php
326-
.. _Streams: http://www.php.net/streams
327-
.. _IEC standard: http://physics.nist.gov/cuu/Units/binary.html
328+
.. _strtotime: https://php.net/manual/en/datetime.formats.php
329+
.. _protocol: https://php.net/manual/en/wrappers.php
330+
.. _Streams: https://php.net/streams
331+
.. _IEC standard: https://physics.nist.gov/cuu/Units/binary.html
328332
.. _Packagist: https://packagist.org/packages/symfony/finder

components/http_foundation/session_configuration.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,6 @@ without knowledge of the specific save handler.
314314
Before PHP 5.4, you can only proxy user-land save handlers but not
315315
native PHP save handlers.
316316

317-
.. _`php.net/session.customhandler`: http://php.net/session.customhandler
318-
.. _`php.net/session.configuration`: http://php.net/session.configuration
319-
.. _`php.net/memcached.setoption`: http://php.net/memcached.setoption
317+
.. _`php.net/session.customhandler`: https://php.net/session.customhandler
318+
.. _`php.net/session.configuration`: https://php.net/session.configuration
319+
.. _`php.net/memcached.setoption`: https://php.net/memcached.setoption

components/http_kernel.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -767,10 +767,10 @@ Learn more
767767
/reference/events
768768

769769
.. _Packagist: https://packagist.org/packages/symfony/http-kernel
770-
.. _reflection: http://php.net/manual/en/book.reflection.php
770+
.. _reflection: https://php.net/manual/en/book.reflection.php
771771
.. _FOSRestBundle: https://github.com/friendsofsymfony/FOSRestBundle
772772
.. _`Create your own framework... on top of the Symfony2 Components`: http://fabien.potencier.org/article/50/create-your-own-framework-on-top-of-the-symfony2-components-part-1
773-
.. _`PHP FPM`: http://php.net/manual/en/install.fpm.php
773+
.. _`PHP FPM`: https://php.net/manual/en/install.fpm.php
774774
.. _`SensioFrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html
775775
.. _`@ParamConverter`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
776776
.. _`@Template`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/view.html

components/intl.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,6 @@ Learn more
347347

348348
.. _Packagist: https://packagist.org/packages/symfony/intl
349349
.. _Icu component: https://packagist.org/packages/symfony/icu
350-
.. _intl extension: http://www.php.net/manual/en/book.intl.php
351-
.. _install the intl extension: http://www.php.net/manual/en/intl.setup.php
350+
.. _intl extension: https://php.net/manual/en/book.intl.php
351+
.. _install the intl extension: https://php.net/manual/en/intl.setup.php
352352
.. _ICU library: http://site.icu-project.org/

components/phpunit_bridge.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -576,11 +576,11 @@ not find the SUT:
576576
.. _PHPUnit: https://phpunit.de
577577
.. _`PHPUnit event listener`: https://phpunit.de/manual/current/en/extending-phpunit.html#extending-phpunit.PHPUnit_Framework_TestListener
578578
.. _`PHPUnit's assertStringMatchesFormat()`: https://phpunit.de/manual/current/en/appendixes.assertions.html#appendixes.assertions.assertStringMatchesFormat
579-
.. _`PHP error handler`: http://php.net/manual/en/book.errorfunc.php
579+
.. _`PHP error handler`: https://php.net/manual/en/book.errorfunc.php
580580
.. _`environment variable`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.php-ini-constants-variables
581581
.. _Packagist: https://packagist.org/packages/symfony/phpunit-bridge
582-
.. _`@-silencing operator`: http://php.net/manual/en/language.operators.errorcontrol.php
583-
.. _`@-silenced`: http://php.net/manual/en/language.operators.errorcontrol.php
582+
.. _`@-silencing operator`: https://php.net/manual/en/language.operators.errorcontrol.php
583+
.. _`@-silenced`: https://php.net/manual/en/language.operators.errorcontrol.php
584584
.. _`Travis CI`: https://travis-ci.org/
585585
.. _`test listener`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.test-listeners
586586
.. _`@covers`: https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.annotations.covers

components/process.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,6 @@ absolute path of the executable PHP binary available on your server::
454454
.. _`PHP Bug#39992`: https://bugs.php.net/bug.php?id=39992
455455
.. _`exec`: https://en.wikipedia.org/wiki/Exec_(operating_system)
456456
.. _`pid`: https://en.wikipedia.org/wiki/Process_identifier
457-
.. _`PHP Documentation`: http://php.net/manual/en/pcntl.constants.php
457+
.. _`PHP Documentation`: https://php.net/manual/en/pcntl.constants.php
458458
.. _Packagist: https://packagist.org/packages/symfony/process
459459
.. _`PHP streams`: http://www.php.net/manual/en/book.stream.php

components/psr7.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ to a :class:`Symfony\\Component\\HttpFoundation\\Response` instance::
8585
$httpFoundationFactory = new HttpFoundationFactory();
8686
$symfonyResponse = $httpFoundationFactory->createResponse($psrResponse);
8787

88-
.. _`PSR-7`: http://www.php-fig.org/psr/psr-7/
88+
.. _`PSR-7`: https://www.php-fig.org/psr/psr-7/
8989
.. _`Zend Diactoros`: https://github.com/zendframework/zend-diactoros
9090
.. _`symfony/psr-http-message-bridge on Packagist`: https://packagist.org/packages/symfony/psr-http-message-bridge

components/serializer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ Learn more
10271027
A popular alternative to the Symfony Serializer Component is the third-party
10281028
library, `JMS serializer`_ (released under the Apache license, so incompatible with GPLv2 projects).
10291029

1030-
.. _`PSR-1 standard`: http://www.php-fig.org/psr/psr-1/
1030+
.. _`PSR-1 standard`: https://www.php-fig.org/psr/psr-1/
10311031
.. _`JMS serializer`: https://github.com/schmittjoh/serializer
10321032
.. _Packagist: https://packagist.org/packages/symfony/serializer
10331033
.. _RFC3339: https://tools.ietf.org/html/rfc3339#section-5.8

contributing/code/bc.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,9 @@ Change value of a constant Yes [1]_ [5]_
300300
Changing an argument type is only possible with a parent type.
301301
Changing a return type is only possible with a child type.
302302
303-
.. _Semantic Versioning: http://semver.org/
304-
.. _scalar type: http://php.net/manual/en/function.is-scalar.php
305-
.. _boolean values: http://php.net/manual/en/function.boolval.php
306-
.. _string values: http://www.php.net/manual/en/function.strval.php
307-
.. _integer values: http://www.php.net/manual/en/function.intval.php
308-
.. _float values: http://www.php.net/manual/en/function.floatval.php
303+
.. _Semantic Versioning: https://semver.org/
304+
.. _scalar type: https://php.net/manual/en/function.is-scalar.php
305+
.. _boolean values: https://php.net/manual/en/function.boolval.php
306+
.. _string values: https://php.net/manual/en/function.strval.php
307+
.. _integer values: https://php.net/manual/en/function.intval.php
308+
.. _float values: https://php.net/manual/en/function.floatval.php

contributing/code/bugs.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If your problem definitely looks like a bug, report it using the official bug
4444

4545
* *(optional)* Attach a :doc:`patch <patches>`.
4646

47-
.. _`Stack Overflow`: http://stackoverflow.com/questions/tagged/symfony2
47+
.. _`Stack Overflow`: https://stackoverflow.com/questions/tagged/symfony2
4848
.. _IRC channel: https://symfony.com/irc
4949
.. _the Symfony Slack: https://symfony.com/slack-invite
5050
.. _tracker: https://github.com/symfony/symfony/issues

contributing/code/patches.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -368,15 +368,15 @@ convert many commits to one commit. This is no longer necessary today, because
368368
Symfony project uses a proprietary tool which automatically squashes all commits
369369
before merging.
370370

371-
.. _ProGit: http://git-scm.com/book
371+
.. _ProGit: https://git-scm.com/book
372372
.. _GitHub: https://github.com/join
373373
.. _`GitHub's Documentation`: https://help.github.com/articles/ignoring-files
374374
.. _Symfony repository: https://github.com/symfony/symfony
375-
.. _dev mailing-list: http://groups.google.com/group/symfony-devs
375+
.. _dev mailing-list: https://groups.google.com/group/symfony-devs
376376
.. _travis-ci.org: https://travis-ci.org/
377-
.. _`travis-ci.org status icon`: http://about.travis-ci.org/docs/user/status-images/
378-
.. _`travis-ci.org Getting Started Guide`: http://about.travis-ci.org/docs/user/getting-started/
377+
.. _`travis-ci.org status icon`: https://about.travis-ci.com/docs/user/status-images/
378+
.. _`travis-ci.org Getting Started Guide`: https://about.travis-ci.com/docs/user/getting-started/
379379
.. _`documentation repository`: https://github.com/symfony/symfony-docs
380-
.. _`fabbot`: http://fabbot.io
381-
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
382-
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
380+
.. _`fabbot`: https://fabbot.io
381+
.. _`PSR-1`: https://www.php-fig.org/psr/psr-1/
382+
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/

contributing/code/standards.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,9 @@ License
267267
present at the top of every PHP file, before the namespace.
268268

269269
.. _`PHP CS Fixer tool`: http://cs.sensiolabs.org/
270-
.. _`PSR-0`: http://www.php-fig.org/psr/psr-0/
271-
.. _`PSR-1`: http://www.php-fig.org/psr/psr-1/
272-
.. _`PSR-2`: http://www.php-fig.org/psr/psr-2/
273-
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
274-
.. _`identical comparison`: http://php.net/manual/en/language.operators.comparison.php
270+
.. _`PSR-0`: https://www.php-fig.org/psr/psr-0/
271+
.. _`PSR-1`: https://www.php-fig.org/psr/psr-1/
272+
.. _`PSR-2`: https://www.php-fig.org/psr/psr-2/
273+
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4/
274+
.. _`identical comparison`: https://php.net/manual/en/language.operators.comparison.php
275275
.. _`Yoda conditions`: https://en.wikipedia.org/wiki/Yoda_conditions

contributing/community/releases.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ version: a new version is published every six months, and there is a two months
192192
period to upgrade. Companies wanting more stability use the LTS versions: a new
193193
version is published every two years and there is a year to upgrade.
194194

195-
.. _Semantic Versioning: http://semver.org/
195+
.. _Semantic Versioning: https://semver.org/
196196
.. _Git repository: https://github.com/symfony/symfony
197197
.. _SensioLabs: http://sensiolabs.com/
198198
.. _roadmap notification: https://symfony.com/roadmap

controller/soap_web_service.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ An example WSDL is below.
165165
</service>
166166
</definitions>
167167
168-
.. _`PHP SOAP`: http://php.net/manual/en/book.soap.php
168+
.. _`PHP SOAP`: https://php.net/manual/en/book.soap.php
169169
.. _`NuSOAP`: http://sourceforge.net/projects/nusoap
170-
.. _`output buffering`: http://php.net/manual/en/book.outcontrol.php
170+
.. _`output buffering`: https://php.net/manual/en/book.outcontrol.php
171171
.. _`Zend SOAP`: http://framework.zend.com/manual/current/en/modules/zend.soap.server.html

create_framework/http_foundation.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -289,16 +289,16 @@ applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 3`_, `ezPublish
289289
5`_, `Laravel`_, `Silex`_ and `more`_).
290290

291291
.. _`Twig`: http://twig.sensiolabs.org/
292-
.. _`HTTP specification`: http://tools.ietf.org/wg/httpbis/
292+
.. _`HTTP specification`: https://tools.ietf.org/wg/httpbis/
293293
.. _`audited`: https://symfony.com/blog/symfony2-security-audit
294294
.. _`Symfony`: https://symfony.com/
295295
.. _`Drupal 8`: https://drupal.org/
296296
.. _`phpBB 3`: https://www.phpbb.com/
297-
.. _`ezPublish 5`: http://ez.no/
298-
.. _`Laravel`: http://laravel.com/
299-
.. _`Silex`: http://silex.sensiolabs.org/
297+
.. _`ezPublish 5`: https://ez.no/
298+
.. _`Laravel`: https://laravel.com/
299+
.. _`Silex`: https://silex.sensiolabs.org/
300300
.. _`Midgard CMS`: http://www.midgard-project.org/
301-
.. _`Zikula`: http://zikula.org/
302-
.. _`autoloaded`: http://php.net/autoload
303-
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
301+
.. _`Zikula`: https://zikula.org/
302+
.. _`autoloaded`: https://php.net/autoload
303+
.. _`PSR-4`: https://www.php-fig.org/psr/psr-4/
304304
.. _`more`: https://symfony.com/components/HttpFoundation

create_framework/http_kernel_controller_resolver.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,5 +203,5 @@ Let's conclude with the new version of our framework::
203203
Think about it once more: our framework is more robust and more flexible than
204204
ever and it still has less than 50 lines of code.
205205

206-
.. _`reflection`: http://php.net/reflection
206+
.. _`reflection`: https://php.net/reflection
207207
.. _`FrameworkExtraBundle`: https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html

create_framework/templating.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,5 @@ As always, you can decide to stop here and use the framework as is; it's
177177
probably all you need to create simple websites like those fancy one-page
178178
`websites`_ and hopefully a few others.
179179

180-
.. _`callbacks`: http://php.net/callback#language.types.callback
181-
.. _`websites`: http://kottke.org/08/02/single-serving-sites
180+
.. _`callbacks`: https://php.net/callback#language.types.callback
181+
.. _`websites`: https://kottke.org/08/02/single-serving-sites

create_framework/unit_testing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@ safely think about the next batch of features we want to add to our framework.
219219

220220
.. _`PHPUnit`: https://phpunit.de/manual/current/en/index.html
221221
.. _`test doubles`: https://phpunit.de/manual/current/en/test-doubles.html
222-
.. _`XDebug`: http://xdebug.org/
222+
.. _`XDebug`: https://xdebug.org/

deployment/azure-website.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,6 @@ of steps needed so that deployment becomes even easier.
453453

454454
.. _`sign up with Azure`: https://azure.microsoft.com/free/
455455
.. _`Azure Portal`: https://portal.azure.com
456-
.. _`PHP MSDN documentation`: http://blogs.msdn.com/b/silverlining/archive/2012/07/10/configuring-php-in-windows-azure-websites-with-user-ini-files.aspx
457-
.. _`git-scm.com`: http://git-scm.com/download
456+
.. _`PHP MSDN documentation`: https://blogs.msdn.com/b/silverlining/archive/2012/07/10/configuring-php-in-windows-azure-websites-with-user-ini-files.aspx
457+
.. _`git-scm.com`: https://git-scm.com/download
458458
.. _`SymfonyAzureEdition`: https://github.com/beberlei/symfony-azure-edition/

doctrine/dbal.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ mapping type:
196196
),
197197
));
198198
199-
.. _`PDO`: http://www.php.net/pdo
199+
.. _`PDO`: https://php.net/pdo
200200
.. _`Doctrine`: http://www.doctrine-project.org
201201
.. _`DBAL Documentation`: http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/index.html
202202
.. _`Custom Mapping Types`: http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/types.html#custom-mapping-types

forms.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,5 +713,5 @@ Learn more
713713
* :doc:`/http_cache/form_csrf_caching`
714714

715715
.. _`Symfony Form component`: https://github.com/symfony/form
716-
.. _`DateTime`: http://php.net/manual/en/class.datetime.php
716+
.. _`DateTime`: https://php.net/manual/en/class.datetime.php
717717
.. _`2.8 UPGRADE Log`: https://github.com/symfony/symfony/blob/2.8/UPGRADE-2.8.md#form

performance.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ Learn more
212212
* :doc:`/http_cache/form_csrf_caching`
213213

214214
.. _`byte code caches`: https://en.wikipedia.org/wiki/List_of_PHP_accelerators
215-
.. _`OPcache`: http://php.net/manual/en/book.opcache.php
215+
.. _`OPcache`: https://php.net/manual/en/book.opcache.php
216216
.. _`bootstrap file`: https://github.com/sensiolabs/SensioDistributionBundle/blob/master/Composer/ScriptHandler.php
217217
.. _`Composer's autoloader optimization`: https://getcomposer.org/doc/articles/autoloader-optimization.md
218-
.. _`APC`: http://php.net/manual/en/book.apc.php
218+
.. _`APC`: https://php.net/manual/en/book.apc.php
219219
.. _`APCu Polyfill component`: https://github.com/symfony/polyfill-apcu
220-
.. _`APCu PHP functions`: http://php.net/manual/en/ref.apcu.php
220+
.. _`APCu PHP functions`: https://php.net/manual/en/ref.apcu.php
221221
.. _`cachetool`: https://github.com/gordalina/cachetool

reference/configuration/framework.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ configured under the ``framework`` key in your application configuration.
1313
.. code-block:: terminal
1414
1515
# displays the default config values defined by Symfony
16-
$ php bin/console config:dump framework
16+
$ php app/console config:dump framework
1717
1818
# displays the actual config values used by your application
19-
$ php bin/console debug:config framework
19+
$ php app/console debug:config framework
2020
2121
.. note::
2222

reference/constraints/GreaterThan.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,4 @@ comparison value.
304304

305305
.. include:: /reference/constraints/_comparison-propertypath-option.rst.inc
306306

307-
.. _`accepted by the DateTime constructor`: http://www.php.net/manual/en/datetime.formats.php
307+
.. _`accepted by the DateTime constructor`: https://php.net/manual/en/datetime.formats.php

0 commit comments

Comments
 (0)