Skip to content

Commit

Permalink
minor #6208 Replace references of PSR-0 with PSR-4 (opdavies)
Browse files Browse the repository at this point in the history
This PR was submitted for the 2.8 branch but it was merged into the 2.3 branch instead (closes #6208).

Discussion
----------

Replace references of PSR-0 with PSR-4

Commits
-------

2efbcbf Replace references of PSR-0 with PSR-4
  • Loading branch information
xabbuh committed Feb 5, 2016
2 parents c750141 + 2efbcbf commit ccbce6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_framework/http_foundation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ version may vary).
``vendor/autoload.php`` file that allows any class to be easily
`autoloaded`_. Without autoloading, you would need to require the file
where a class is defined before being able to use it. But thanks to
`PSR-0`_, we can just let Composer and PHP do the hard work for us.
`PSR-4`_, we can just let Composer and PHP do the hard work for us.

Now, let's rewrite our application by using the ``Request`` and the
``Response`` classes::
Expand Down Expand Up @@ -309,5 +309,5 @@ applications using it (like `Symfony`_, `Drupal 8`_, `phpBB 4`_, `ezPublish
.. _`Midgard CMS`: http://www.midgard-project.org/
.. _`Zikula`: http://zikula.org/
.. _`autoloaded`: http://php.net/autoload
.. _`PSR-0`: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md
.. _`PSR-4`: http://www.php-fig.org/psr/psr-4/
.. _`more`: http://symfony.com/components/HttpFoundation

0 comments on commit ccbce6e

Please sign in to comment.