Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 0e13fa0

Browse files
committed
Use HTTPS for links to the docs
1 parent 889e6aa commit 0e13fa0

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

app/Resources/views/default/index.html.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<div id="status">
1111
<p>
12-
<svg id="icon-status" width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z" fill="#759E1A"/></svg>
12+
<svg id="icon-status" width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="https://www.w3.org/2000/svg"><path d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z" fill="#759E1A"/></svg>
1313

1414
Your application is now ready. You can start working on it at:
1515
<code>{{ base_dir }}</code>
@@ -19,7 +19,7 @@
1919
<div id="next">
2020
<h2>What's next?</h2>
2121
<p>
22-
<svg id="icon-book" version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="-12.5 9 64 64" enable-background="new -12.5 9 64 64" xml:space="preserve">
22+
<svg id="icon-book" version="1.1" xmlns="https://www.w3.org/2000/svg" x="0px" y="0px" viewBox="-12.5 9 64 64" enable-background="new -12.5 9 64 64" xml:space="preserve">
2323
<path fill="#AAA" d="M6.8,40.8c2.4,0.8,4.5-0.7,4.9-2.5c0.2-1.2-0.3-2.1-1.3-3.2l-0.8-0.8c-0.4-0.5-0.6-1.3-0.2-1.9
2424
c0.4-0.5,0.9-0.8,1.8-0.5c1.3,0.4,1.9,1.3,2.9,2.2c-0.4,1.4-0.7,2.9-0.9,4.2l-0.2,1c-0.7,4-1.3,6.2-2.7,7.5
2525
c-0.3,0.3-0.7,0.5-1.3,0.6c-0.3,0-0.4-0.3-0.4-0.3c0-0.3,0.2-0.3,0.3-0.4c0.2-0.1,0.5-0.3,0.4-0.8c0-0.7-0.6-1.3-1.3-1.3
@@ -36,7 +36,7 @@
3636
</svg>
3737

3838
Read the documentation to learn
39-
<a href="http://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION')[:3] }}/page_creation.html">
39+
<a href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION')[:3] }}/page_creation.html">
4040
How to create your first page in Symfony
4141
</a>
4242
</p>

app/config/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ imports:
44
- { resource: services.yml }
55

66
# Put parameters here that don't need to change on each machine where the app is deployed
7-
# http://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
7+
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
88
parameters:
99
locale: en
1010

@@ -24,7 +24,7 @@ framework:
2424
default_locale: '%locale%'
2525
trusted_hosts: ~
2626
session:
27-
# http://symfony.com/doc/current/reference/configuration/framework.html#handler-id
27+
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
2828
handler_id: session.handler.native_file
2929
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
3030
fragments: ~

app/config/parameters.yml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is a "template" of what your parameters.yml file should look like
22
# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
3-
# http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
3+
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
44
parameters:
55
database_host: 127.0.0.1
66
database_port: ~

app/config/security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# To get started with security, check out the documentation:
2-
# http://symfony.com/doc/current/security.html
2+
# https://symfony.com/doc/current/security.html
33
security:
44

5-
# http://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
5+
# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
66
providers:
77
in_memory:
88
memory: ~
@@ -17,8 +17,8 @@ security:
1717
anonymous: ~
1818
# activate different ways to authenticate
1919

20-
# http://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
20+
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
2121
#http_basic: ~
2222

23-
# http://symfony.com/doc/current/cookbook/security/form_login_setup.html
23+
# https://symfony.com/doc/current/security/form_login_setup.html
2424
#form_login: ~

app/config/services.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Learn more about services, parameters and containers at
2-
# http://symfony.com/doc/current/service_container.html
2+
# https://symfony.com/doc/current/service_container.html
33
parameters:
44
#parameter_name: value
55

bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Symfony\Component\Console\Input\ArgvInput;
66
use Symfony\Component\Debug\Debug;
77

88
// if you don't want to setup permissions the proper way, just uncomment the following PHP line
9-
// read http://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
9+
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
1010
// for more information
1111
//umask(0000);
1212

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
4-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
4+
<phpunit xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
66
backupGlobals="false"
77
colors="true"
88
bootstrap="vendor/autoload.php"

web/app_dev.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Symfony\Component\Debug\Debug;
55

66
// If you don't want to setup permissions the proper way, just uncomment the following PHP line
7-
// read http://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
7+
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
88
// for more information
99
//umask(0000);
1010

0 commit comments

Comments
 (0)