Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1226b20

Browse files
committed
feature#5385 Added a note about the need to require Composer's autoload file (javiereguiluz)
This PR was merged into the 2.3 branch.Discussion----------Added a note about the need to require Composer's autoload file| Q | A| ------------- | ---| Doc fix? | yes| New docs? | no| Applies to | all| Fixed tickets | -This PR tries to finish#4409. I don't know if I applied correctly the ideas proposed by@weaverryan and@wouterj in that PR.Commits-------7f1ec8a Added a note about the need to require Composer's autoload file
2 parentsb492f17 +7f1ec8a commit1226b20

File tree

24 files changed

+50
-1
lines changed

24 files changed

+50
-1
lines changed

‎components/class_loader/introduction.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,7 @@ You can install the component in 2 different ways:
3636
on `Packagist`_);
3737
* Use the official Git repository (https://github.com/symfony/ClassLoader).
3838

39+
..include::/components/require_autoload.rst.inc
40+
3941
.. _`autoloading mechanism`:http://php.net/manual/en/language.oop5.autoload.php
4042
.. _Packagist:https://packagist.org/packages/symfony/class-loader

‎components/config/introduction.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ You can install the component in 2 different ways:
1717
*:doc:`Install it via Composer</components/using_components>` (``symfony/config`` on `Packagist`_);
1818
* Use the official Git repository (https://github.com/symfony/Config).
1919

20+
..include::/components/require_autoload.rst.inc
21+
2022
Sections
2123
--------
2224

‎components/console/introduction.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ You can install the component in 2 different ways:
2020
*:doc:`Install it via Composer</components/using_components>` (``symfony/console`` on `Packagist`_);
2121
* Use the official Git repository (https://github.com/symfony/Console).
2222

23+
..include::/components/require_autoload.rst.inc
24+
2325
Creating a basic Command
2426
------------------------
2527

‎components/css_selector.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ You can install the component in 2 different ways:
1515
*:doc:`Install it via Composer</components/using_components>` (``symfony/css-selector`` on `Packagist`_);
1616
* Use the official Git repository (https://github.com/symfony/CssSelector).
1717

18+
..include::/components/require_autoload.rst.inc
19+
1820
Usage
1921
-----
2022

‎components/debug.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ You can install the component in many different ways:
1919
*:doc:`Install it via Composer</components/using_components>` (``symfony/debug`` on `Packagist`_);
2020
* Use the official Git repository (https://github.com/symfony/Debug).
2121

22+
..include::/components/require_autoload.rst.inc
23+
2224
Usage
2325
-----
2426

‎components/dependency_injection/introduction.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ You can install the component in 2 different ways:
1919
*:doc:`Install it via Composer</components/using_components>` (``symfony/dependency-injection`` on `Packagist`_);
2020
* Use the official Git repository (https://github.com/symfony/DependencyInjection).
2121

22+
..include::/components/require_autoload.rst.inc
23+
2224
Basic Usage
2325
-----------
2426

‎components/dom_crawler.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ You can install the component in 2 different ways:
2020
*:doc:`Install it via Composer</components/using_components>` (``symfony/dom-crawler`` on `Packagist`_);
2121
* Use the official Git repository (https://github.com/symfony/DomCrawler).
2222

23+
..include::/components/require_autoload.rst.inc
24+
2325
Usage
2426
-----
2527

‎components/event_dispatcher/introduction.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ You can install the component in 2 different ways:
5656
*:doc:`Install it via Composer</components/using_components>` (``symfony/event-dispatcher`` on `Packagist`_);
5757
* Use the official Git repository (https://github.com/symfony/EventDispatcher).
5858

59+
..include::/components/require_autoload.rst.inc
60+
5961
Usage
6062
-----
6163

‎components/filesystem.rst‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ You can install the component in 2 different ways:
1818
*:doc:`Install it via Composer</components/using_components>` (``symfony/filesystem`` on `Packagist`_);
1919
* Use the official Git repository (https://github.com/symfony/Filesystem).
2020

21+
..include::/components/require_autoload.rst.inc
22+
2123
Usage
2224
-----
2325

‎components/finder.rst‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ You can install the component in 2 different ways:
1616
*:doc:`Install it via Composer</components/using_components>` (``symfony/finder`` on `Packagist`_);
1717
* Use the official Git repository (https://github.com/symfony/Finder).
1818

19+
..include::/components/require_autoload.rst.inc
20+
1921
Usage
2022
-----
2123

@@ -308,7 +310,7 @@ The contents of returned files can be read with
308310

309311
foreach ($finder as $file) {
310312
$contents = $file->getContents();
311-
313+
312314
// ...
313315
}
314316

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp