Skip to content

Changed a comment in the examples in the di compilation page #1733

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 all commits
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
6 changes: 4 additions & 2 deletions components/dependency_injection/compilation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ but getting an up to date configuration whilst developing your application::

// ...

// set $isDebug based on something in your project
// based on something in your project
$isDebug = ...;

$file = __DIR__ .'/cache/container.php';

Expand Down Expand Up @@ -398,7 +399,8 @@ and use them as metadata for the cache::

// ...

// set $isDebug based on something in your project
// based on something in your project
$isDebug = ...;

$file = __DIR__ .'/cache/container.php';
$containerConfigCache = new ConfigCache($file, $isDebug);
Expand Down