diff --git a/components/dependency_injection/compilation.rst b/components/dependency_injection/compilation.rst index 02a47e279d1..49d099c06c4 100644 --- a/components/dependency_injection/compilation.rst +++ b/components/dependency_injection/compilation.rst @@ -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'; @@ -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);