File tree 2 files changed +6
-2
lines changed
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::
82
82
Search in several locations by chaining calls to
83
83
:method: `Symfony\\ Component\\ Finder\\ Finder::in `::
84
84
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');
86
90
87
91
Use wildcard characters to search in the directories matching a pattern::
88
92
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ instead::
177
177
}
178
178
179
179
Now, 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
181
181
be created.
182
182
183
183
Command Lifecycle
You can’t perform that action at this time.
0 commit comments