Skip to content

Commit 0c0c076

Browse files
committed
Remove app/ references
1 parent 8b48cc9 commit 0c0c076

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/config/resources.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ files. This can be done with the :class:`Symfony\\Component\\Config\\FileLocator
1919

2020
use Symfony\Component\Config\FileLocator;
2121

22-
$configDirectories = array(__DIR__.'/app/config');
22+
$configDirectories = array(__DIR__.'/config');
2323

2424
$locator = new FileLocator($configDirectories);
2525
$yamlUserFiles = $locator->locate('users.yaml', null, false);

components/dependency_injection/workflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for more details.
3434
Application-level Configuration
3535
-------------------------------
3636

37-
Application level config is loaded from the ``app/config`` directory. Multiple
37+
Application level config is loaded from the ``config`` directory. Multiple
3838
files are loaded which are then merged when the extensions are processed.
3939
This allows for different configuration for different environments e.g.
4040
dev, prod.

components/phpunit_bridge.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ message, enclosed with ``/``. For example, with:
134134
<!-- ... -->
135135
136136
<php>
137-
<server name="KERNEL_DIR" value="app/" />
137+
<server name="KERNEL_CLASS" value="App\Kernel" />
138138
<env name="SYMFONY_DEPRECATIONS_HELPER" value="/foobar/" />
139139
</php>
140140
</phpunit>

0 commit comments

Comments
 (0)