Skip to content

Commit d9e3513

Browse files
style(*): Fix typo
1 parent 66de056 commit d9e3513

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/INSTALLATION_GUIDE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
## Requirements
2626

2727
- PHP >= 7.2
28-
- required php extensions : `ext-json`, `ext-gd`
28+
- required php extensions: `ext-json`, `ext-gd`
29+
- suggested php extension: `ext-curl`
2930

3031
## Installation
3132

docs/TECHNICAL_NOTES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,15 @@ an empty array.
5050

5151
### Why not PHP 5.6?
5252

53-
Because this PHP version is no more supported since December 2018 (not even a security fix!).
53+
Because this PHP version is no more supported since December 2018 (not even a security fix).
5454
Also, a lot of libraries are no more compatible with this version.
5555
We don't want to use an older version of these libraries because Composer can only install one version of each extension/package.
5656
So, being compatible with this old PHP version means to be not compatible with projects using a new version of these libraries.
5757

5858
### Why not 7.0.x nor 7.1.x ?
5959

60-
These PHP versions are not anymore maintained for security fixes since 2019! We encourage you a lot to upgrade your PHP version. You can view the [full list of PHP versions lifecycle](https://www.php.net/supported-versions.php).
60+
These PHP versions are not anymore maintained for security fixes since 2019. We encourage you a lot to upgrade your
61+
PHP version. You can view the [full list of PHP versions lifecycle](https://www.php.net/supported-versions.php).
6162

6263
To get a robust library and not provide security bug unmaintained, we use [components](https://packagist.org/packages/symfony/cache#v3.4.47) under [LTS versioning](https://symfony.com/releases/3.4).
6364

src/TemplateConfiguration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TemplateConfiguration implements ConfigurationInterface
2323
*/
2424
public function getConfigTreeBuilder(): TreeBuilder
2525
{
26-
$defaultSublitle = 'This page is protected against cyber attacks and your IP has been banned by our system.';
26+
$defaultSubtitle = 'This page is protected against cyber attacks and your IP has been banned by our system.';
2727
$treeBuilder = new TreeBuilder('config');
2828
/** @var ArrayNodeDefinition $rootNode */
2929
$rootNode = $treeBuilder->getRootNode();
@@ -73,7 +73,7 @@ public function getConfigTreeBuilder(): TreeBuilder
7373
->children()
7474
->scalarNode('tab_title')->defaultValue('Oops..')->end()
7575
->scalarNode('title')->defaultValue('🤭 Oh!')->end()
76-
->scalarNode('subtitle')->defaultValue($defaultSublitle)->end()
76+
->scalarNode('subtitle')->defaultValue($defaultSubtitle)->end()
7777
->scalarNode('footer')->defaultValue('')->end()
7878
->end()
7979
->end()

0 commit comments

Comments
 (0)