-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[RFR] Misc. minor fixes mostly related to formatting issues #3899
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
79bf0a1
Misc. minor fixes mostly related to formatting issues
javiereguiluz 00b3d26
Added the suggestions made by the great @WouterJ
javiereguiluz dee3180
Fixed the formating of one table (it now uses proper headers)
javiereguiluz 0554cae
Fixed some minor formatting issues related to lists
javiereguiluz 4641c66
Fixed the formatting of one table headers
javiereguiluz 9a71577
Removed a tip inside a sidebar
javiereguiluz 314c131
Fixed the indentation of one code block
javiereguiluz 81fe666
Fixed more table headers formatting
javiereguiluz 6625ff2
Fixed the indentation of a bulleted list
javiereguiluz 2deb5d7
Added some links to API methods
javiereguiluz 3b557a0
Fixed the formatting of several lists to avoid problems when
javiereguiluz e871a32
Fixed a very minor indentation issue
javiereguiluz b223417
Replaced a sidebar with a tip directive
javiereguiluz 03b83ba
Splitted one tip directive into two smaller tips
javiereguiluz d38f00e
Fixed a minor indenttation issue
javiereguiluz 2442839
Reverted the changes in the numbered lists
javiereguiluz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -287,12 +287,12 @@ The new environment is now accessible via:: | |
|
||
.. note:: | ||
|
||
Some environments, like the ``dev`` environment, are never meant to be | ||
accessed on any deployed server by the general public. This is because | ||
certain environments, for debugging purposes, may give too much information | ||
about the application or underlying infrastructure. To be sure these environments | ||
aren't accessible, the front controller is usually protected from external | ||
IP addresses via the following code at the top of the controller: | ||
Some environments, like the ``dev`` environment, are never meant to be | ||
accessed on any deployed server by the general public. This is because | ||
certain environments, for debugging purposes, may give too much information | ||
about the application or underlying infrastructure. To be sure these environments | ||
aren't accessible, the front controller is usually protected from external | ||
IP addresses via the following code at the top of the controller: | ||
|
||
.. code-block:: php | ||
|
||
|
@@ -315,8 +315,12 @@ However, each environment caches its own set of files: | |
|
||
.. code-block:: text | ||
|
||
app/cache/dev - cache directory for the *dev* environment | ||
app/cache/prod - cache directory for the *prod* environment | ||
<your-project>/ | ||
├─ app/ | ||
│ ├─ cache/ | ||
│ │ ├─ dev/ # cache directory for the *dev* environment | ||
│ │ └─ prod/ # cache directory for the *prod* environment | ||
│ ├─ ... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unicode trees! :) |
||
|
||
Sometimes, when debugging, it may be helpful to inspect a cached file to | ||
understand how something is working. When doing so, remember to look in | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any special reason for the additional indentation on this line?