Skip to content

Removed the Internals chapter from the Symfony book #4901

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 12 commits into from
May 23, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed some wrong cross references
  • Loading branch information
javiereguiluz committed May 22, 2015
commit f6432ad553ec0953f55f457b7db8014fcd1959df
2 changes: 1 addition & 1 deletion cookbook/email/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Sending emails with Symfony is pretty straightforward thanks to the
SwiftmailerBundle, which leverages the power of the `Swift Mailer`_ library.

To functionally test that an email was sent, and even assert the email subject,
content or any other headers, you can use :doc:`the Symfony Profiler </cookbook/profiler>`.
content or any other headers, you can use :doc:`the Symfony Profiler </cookbook/profiler/index>`.

Start with an easy controller action that sends an email::

Expand Down
2 changes: 1 addition & 1 deletion cookbook/profiler/data_collector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
How to Create a custom Data Collector
=====================================

:doc:`The Symfony Profiler </cookbook/profiler>` delegates data collecting to
:doc:`The Symfony Profiler </cookbook/profiler/index>` delegates data collecting to
data collectors. Symfony comes bundled with a few of them, but you can easily
create your own.

Expand Down
2 changes: 1 addition & 1 deletion cookbook/testing/profiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ you write functional tests that monitor your production servers, you might
want to write tests on the profiling data as it gives you a great way to check
various things and enforce some metrics.

:doc:`The Symfony Profiler </cookbook/profiler>` gathers a lot of data for
:doc:`The Symfony Profiler </cookbook/profiler/index>` gathers a lot of data for
each request. Use this data to check the number of database calls, the time
spent in the framework, etc. But before writing assertions, enable the profiler
and check that the profiler is indeed available (it is enabled by default in
Expand Down