@@ -18,16 +18,16 @@ The [Open Source Guide](https://opensource.guide/) is a good first read for thos
1818
1919## CodeIgniter Internals Overview
2020
21- [ CodeIgniter Internals Overview] ( ./internals.md ) should help contributors
22- understand how the core of the framework works. Specifically, it details the
21+ [ CodeIgniter Internals Overview] ( ./internals.md ) should help contributors
22+ understand how the core of the framework works. Specifically, it details the
2323information needed to create new packages for the core.
2424
2525## Guidelines
2626
2727Before we look into how to contribute to CodeIgniter4, here are some guidelines.
2828Your Pull Requests (PRs) need to meet our guidelines.
2929
30- If your Pull Requests fail to pass these guidelines, they will be declined,
30+ If your Pull Requests fail to pass these guidelines, they will be declined,
3131and you will need to re-submit when you’ve made the changes.
3232This might sound a bit tough, but it is required for us to maintain the quality of the codebase.
3333
@@ -38,7 +38,7 @@ This might sound a bit tough, but it is required for us to maintain the quality
3838All code must conform to our [ Style Guide] ( ./styleguide.md ) , which is
3939based on PSR-12.
4040
41- This makes certain that all submitted code is of the same format
41+ This makes certain that all submitted code is of the same format
4242as the existing code and ensures that the codebase will be as readable as possible.
4343
4444You can fix most of the coding style violations by running this command in your terminal:
@@ -63,7 +63,7 @@ class would test the `Banana` class. There will be occasions when it is
6363more convenient to have separate classes to test different functionality
6464of a single CodeIgniter component.
6565
66- See [ Running System Tests] ( ../tests/README.md )
66+ See [ Running System Tests] ( ../tests/README.md )
6767and the [ PHPUnit website] ( https://phpunit.de/ ) for more information.
6868
6969### Comments
@@ -92,11 +92,11 @@ Each framework component or group of components needs a corresponding
9292section in the User Guide. Some of the more fundamental components will
9393show up in more than one place.
9494
95- If you change anything that requires a change to documentation,
96- then you will need to add to the documentation.
97- New classes, methods, parameters, changing default values, etc.
98- are all changes that require a change to documentation.
99- Also, the [ changelog] ( https://codeigniter4.github.io/CodeIgniter4/changelogs/index.html ) must be updated for every change,
95+ If you change anything that requires a change to documentation,
96+ then you will need to add to the documentation.
97+ New classes, methods, parameters, changing default values, etc.
98+ are all changes that require a change to documentation.
99+ Also, the [ changelog] ( https://codeigniter4.github.io/CodeIgniter4/changelogs/index.html ) must be updated for every change,
100100and [ PHPDoc] ( https://github.com/codeigniter4/CodeIgniter4/blob/develop/phpdoc.dist.xml ) blocks must be maintained.
101101
102102See [ Writing CodeIgniter Documentation] ( ./documentation.rst ) .
0 commit comments