8000 Apply suggestions from the comments · symfony/symfony-docs@3f8e61d · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f8e61d

Browse files
committed
Apply suggestions from the comments
1 parent 613d6bc commit 3f8e61d

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

create_framework/http_kernel_httpkernelinterface.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ goal by making our framework implement ``HttpKernelInterface``::
99
namespace Symfony\Component\HttpKernel;
1010

1111
// ...
12-
1312
interface HttpKernelInterface
1413
{
1514
/**

create_framework/separation_of_concerns.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ be autoloaded, update the ``composer.json`` file:
8282
{
8383
"...": "...",
8484
"autoload": {
85-
"psr-0": { "Simplex\\": "src/", "Calendar\\": "src/" }
85+
"psr-4": { "": "src/" }
8686
}
8787
}
8888
8989
.. note::
9090

91-
For the Composer autoloader to be updated, run ``composer update``.
91+
For the Composer autoloader to be updated, run ``composer dump-autoload``.
9292

9393
Move the controller to ``Calendar\Controller\LeapYearController``::
9494

create_framework/unit_testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using `PHPUnit`_. Create a PHPUnit configuration file in
1616
<?xml version="1.0" encoding="UTF-8"?>
1717
<phpunit
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
19+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.1/phpunit.xsd"
2020
backupGlobals="false"
2121
colors="true"
2222
bootstrap="vendor/autoload.php"

redirection_map

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
/cookbook/configuration/pdo_session_storage /cookbook/doctrine/pdo_session_storage
3030
/cookbook/configuration/mongodb_session_storage /cookbook/doctrine/mongodb_session_storage
3131
/cookbook/service_container/event_listener /cookbook/event_dispatcher/event_listener
32-
/create_framework/http_foundation /create_framework/http-foundation
33-
/create_framework/front_controller /create_framework/front-controller
34-
/create_framework/http_kernel_controller_resolver /create_framework/http-kernel-controller-resolver
35-
/create_framework/separation_of_concerns /create_framework/separation-of-concerns
36-
/create_framework/unit_testing /create_framework/unit-testing
37-
/create_framework/event_dispatcher /create_framework/event-dispatcher
38-
/create_framework/http_kernel_httpkernelinterface /create_framework/http-kernel-httpkernelinterface
39-
/create_framework/http_kernel_httpkernel_class /create_framework/http-kernel-httpkernel-class
40-
/create_framework/dependency_injection /create_framework/dependency-injection
32+
/create_framework/http-foundation /create_framework/http_foundation
33+
/create_framework/front-controller /create_framework/front_controller
34+
/create_framework/http-kernel-controller-resolver /create_framework/http_kernel_controller_resolver
35+
/create_framework/separation-of-concerns /create_framework/separation_of_concerns
36+
/create_framework/unit-testing /create_framework/unit_testing
37+
/create_framework/event-dispatcher /create_framework/event_dispatcher
38+
/create_framework/http-kernel-httpkernelinterface /create_framework/http_kernel_httpkernelinterface
39+
/create_framework/http-kernel-httpkernel-class /create_framework/http_kernel_httpkernel_class
40+
/create_framework/dependency-injection /create_framework/dependency_injection

0 commit comments

Comments
 (0)
0