-
Notifications
You must be signed in to change notification settings - Fork 193
simple correction example of pipes in route #386
Conversation
Zend\Expressive\Container\ApplicationFactory::ROUTING_MIDDLEWARE, | ||
Zend\Expressive\Container\ApplicationFactory::DISPATCH_MIDDLEWARE, | ||
[ /* ... */ ], | ||
], |
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.
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.
Indentation was correct in the original. The renderer we use, mkdocs, indents the code blocks so that they properly appear under the bullet point to which they reference.
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.
The only changes I can use from this patch are:
- doc/book/cookbook/using-a-base-path.md
- doc/book/reference/migration/rc-to-v1.md
If you would be so kind, please revert the other changes, and I can then review for inclusion.
Thanks!
Zend\Expressive\Container\ApplicationFactory::ROUTING_MIDDLEWARE, | ||
Zend\Expressive\Container\ApplicationFactory::DISPATCH_MIDDLEWARE, | ||
[ /* ... */ ], | ||
], |
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.
Indentation was correct in the original. The renderer we use, mkdocs, indents the code blocks so that they properly appear under the bullet point to which they reference.
$pipeline->pipe($container->get('AuthenticationMiddleware)'); | ||
$pipeline->pipe($container->get('AuthorizationMiddleware)'); | ||
$pipeline->pipe($container->get('AuthenticationMiddleware')); | ||
$pipeline->pipe($container->get('AuthorizationMiddleware')); |
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.
These were fixed in a previous pull request.
corrected @weierophinney |
simple correction example of pipes in route
Thanks, @jhonmike! |
No description provided.