Fix code block indentation in docs #8207
Merged
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.
Summary
Fixes PHP code block indentation in top-level code examples that used incorrect 8- or 12-space indentation instead of the CakePHP standard 4-space convention.
Note: Only top-level code blocks were affected. Code inside class method bodies (where 12-space = 8 base + 4 chain) was already correct and left unchanged.
Files fixed:
core-libraries/email.md— Mailer chained calls at top level had 12-space indent → fixed to 4 (with 8 for nestedviewBuilder()chains)core-libraries/collections.md—->map()chain andTotalOrderCalculatorclass body had 8-space indent → fixed to 4controllers.md—fetchTable()->find()arguments had 8-space indent → fixed to 4orm/associations.md— Array arguments inbelongsTo(),hasMany(),hasOne()had 16-space indent → fixed to 12 (inside method body)orm/retrieving-data-and-resultsets.md—find('list',arguments had 8-space indent → fixed to 4, added trailing comma