File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,11 @@ directory to use for the search::
8282Search in several locations by chaining calls to
8383:method: `Symfony\\ Component\\ Finder\\ Finder::in `::
8484
85- $finder->files()->in(__DIR__)->in('/elsewhere');
85+ // search inside *both* directories
86+ $finder->files()->in(array(__DIR__, '/elsewhere'));
87+
88+ // same as above
89+ $finder->in(__DIR__)->in('/elsewhere');
8690
8791Use wildcard characters to search in the directories matching a pattern::
8892
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ instead::
177177 }
178178
179179Now, once you created the required services and logic, the command will execute
180- the ``generate () `` method of the ``app.user_manager `` service and the user will
180+ the ``create () `` method of the ``app.user_manager `` service and the user will
181181be created.
182182
183183Command Lifecycle
You can’t perform that action at this time.
0 commit comments