File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
components/dependency_injection Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ configuration. The ``PhpDumper`` makes dumping the compiled container easy::
319
319
320
320
if (file_exists($file)) {
321
321
require_once $file;
322
- $container = new ProjectServiceContiner ();
322
+ $container = new ProjectServiceContainer ();
323
323
} else {
324
324
$container = new ContainerBuilder();
325
325
// ...
@@ -329,7 +329,7 @@ configuration. The ``PhpDumper`` makes dumping the compiled container easy::
329
329
file_put_contents($file, $dumper->dump());
330
330
}
331
331
332
- ``ProjectServiceContiner `` is the default name given to the dumped container
332
+ ``ProjectServiceContainer `` is the default name given to the dumped container
333
333
class, you can change this though this with the ``class `` option when you dump
334
334
it::
335
335
You can’t perform that action at this time.
0 commit comments