File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ is straightforward::
42
42
The autoloader is automatically registered in a Symfony application
43
43
(see ``app/autoload.php ``).
44
44
45
- Use the :method: `Symfony\\ Component\\ ClassLoader\\ ClassLoader::addPrefix `
46
- or :method: `Symfony\\ Component\\ ClassLoader\\ ClassLoader::addPrefixes ` methods
47
- to register your classes::
45
+ Use :method: `Symfony\\ Component\\ ClassLoader\\ ClassLoader::addPrefix ` or
46
+ :method: `Symfony\\ Component\\ ClassLoader\\ ClassLoader::addPrefixes ` to register
47
+ your classes::
48
48
49
49
// register a single namespaces
50
50
$loader->addPrefix('Symfony', __DIR__.'/vendor/symfony/symfony/src');
Original file line number Diff line number Diff line change @@ -14,9 +14,8 @@ Loading Resources
14
14
Locating Resources
15
15
------------------
16
16
17
- Loading the configuration normally starts with a search for resources –
18
- in most cases: files. This can be done with the
19
- :class: `Symfony\\ Component\\ Config\\ FileLocator `::
17
+ Loading the configuration normally starts with a search for resources, mostly
18
+ files. This can be done with the :class: `Symfony\\ Component\\ Config\\ FileLocator `::
20
19
21
20
use Symfony\Component\Config\FileLocator;
22
21
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ The Extension must specify a ``getAlias`` method to implement the interface::
99
99
}
100
100
}
101
101
102
- For YAML configuration files specifying the alias for the Extension as a
102
+ For YAML configuration files specifying the alias for the extension as a
103
103
key will mean that those values are passed to the Extension's ``load `` method:
104
104
105
105
.. code-block :: yaml
You can’t perform that action at this time.
0 commit comments