@@ -122,7 +122,7 @@ The prompt asks you whether you want to list resources:
122122On confirmation, the process will create the following files:
123123
124124- ` src/<ModuleName>/src/Collection/<ModuleName>Collection.php ` : describes a resource-specific collection
125- - ` src/<ModuleName>/src/Handler/Get<ModuleName>CollectionHandler.php ` : handles the resource collection representation
125+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>CollectionHandler.php ` : handles the resource collection representation
126126
127127The matching Collection and ServiceInterface will be automatically injected into the Handler.
128128
@@ -136,7 +136,7 @@ The prompt asks you whether you want to view resources:
136136
137137On confirmation, the process will create the following file:
138138
139- - ` src/<ModuleName>/src/Handler/Get<ModuleName>ResourceHandler.php ` : handles the resource representation
139+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>ResourceHandler.php ` : handles the resource representation
140140
141141The matching ServiceInterface will be automatically injected into the Handler.
142142
@@ -150,7 +150,7 @@ The prompt asks you whether you want to create resources:
150150
151151On confirmation, the process will create the following files:
152152
153- - ` src/<ModuleName>/src/Handler/Post<ModuleName>ResourceHandler.php ` : handles the resource creation
153+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Post<ModuleName>ResourceHandler.php ` : handles the resource creation
154154- ` src/<ModuleName>/src/InputFilter/Create<ModuleName>InputFilter.php ` : request payload validators
155155
156156The matching InputFilter and ServiceInterface will be automatically injected into the Handler.
@@ -165,7 +165,7 @@ The prompt asks you whether you want to delete resources:
165165
166166On confirmation, the process will create the following files:
167167
168- - ` src/<ModuleName>/src/Handler/Delete<ModuleName>ResourceHandler.php ` : handles the resource deletion
168+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Delete<ModuleName>ResourceHandler.php ` : handles the resource deletion
169169
170170The matching ServiceInterface will be automatically injected into the Handler.
171171
@@ -179,7 +179,7 @@ The prompt asks you whether you want to edit resources:
179179
180180On confirmation, the process will create the following files:
181181
182- - ` src/<ModuleName>/src/Handler/Patch<ModuleName>ResourceHandler.php ` : handles the resource update
182+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Patch<ModuleName>ResourceHandler.php ` : handles the resource update
183183- ` src/<ModuleName>/src/InputFilter/Edit<ModuleName>InputFilter.php ` : request payload validators
184184
185185The matching InputFilter and ServiceInterface will be automatically injected into the Handler.
@@ -194,7 +194,7 @@ The prompt asks you whether you want to replace resources:
194194
195195On confirmation, the process will create the following files:
196196
197- - ` src/<ModuleName>/src/Handler/Put<ModuleName>ResourceHandler.php ` : handles the resource replacement
197+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Put<ModuleName>ResourceHandler.php ` : handles the resource replacement
198198- ` src/<ModuleName>/src/InputFilter/Replace<ModuleName>InputFilter.php ` : request payload validators
199199
200200The matching InputFilter and ServiceInterface will be automatically injected into the Handler.
@@ -211,7 +211,7 @@ The prompt asks you whether you want to list resources:
211211
212212On confirmation, the process will create the following files:
213213
214- - ` src/<ModuleName>/src/Handler/Get<ModuleName>ListHandler.php ` : renders the resource list page
214+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>ListHandler.php ` : renders the resource list page
215215- ` src/<ModuleName>/templates/<ModuleName>/<ModuleName>-list.html.twig ` : renders the resource list
216216
217217The matching ServiceInterface will be automatically injected into the Handler.
@@ -226,7 +226,7 @@ The prompt asks you whether you want to view resources:
226226
227227On confirmation, the process will create the following files:
228228
229- - ` src/<ModuleName>/src/Handler/Get<ModuleName>ViewHandler.php ` : renders the resource page
229+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>ViewHandler.php ` : renders the resource page
230230- ` src/<ModuleName>/templates/<ModuleName>/<ModuleName>-view.html.twig ` : renders the resource
231231
232232The matching ServiceInterface will be automatically injected into the Handler.
@@ -241,8 +241,8 @@ The prompt asks you whether you want to create resources:
241241
242242On confirmation, the process will create the following files:
243243
244- - ` src/<ModuleName>/src/Handler/Get<ModuleName>CreateFormHandler.php ` : renders the resource creation form page
245- - ` src/<ModuleName>/src/Handler/Post<ModuleName>CreateHandler.php ` : handles the resource creation
244+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>CreateFormHandler.php ` : renders the resource creation form page
245+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Post<ModuleName>CreateHandler.php ` : handles the resource creation
246246- ` src/<ModuleName>/src/Form/Create<ModuleName>Form.php ` : form fields
247247- ` src/<ModuleName>/src/InputFilter/Create<ModuleName>InputFilter.php ` : form field validators
248248- ` src/<ModuleName>/templates/<ModuleName>/<ModuleName>-view.html.twig ` : renders the resource creation form
@@ -259,8 +259,8 @@ The prompt asks you whether you want to delete resources:
259259
260260On confirmation, the process will create the following files:
261261
262- - ` src/<ModuleName>/src/Handler/Get<ModuleName>DeleteFormHandler.php ` : renders the resource deletion form page
263- - ` src/<ModuleName>/src/Handler/Post<ModuleName>DeleteHandler.php ` : handles the resource deletion
262+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>DeleteFormHandler.php ` : renders the resource deletion form page
263+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Post<ModuleName>DeleteHandler.php ` : handles the resource deletion
264264- ` src/<ModuleName>/src/Form/Delete<ModuleName>Form.php ` : form fields
265265- ` src/<ModuleName>/src/InputFilter/Delete<ModuleName>InputFilter.php ` : form field validators
266266- ` src/<ModuleName>/src/InputFilter/Input/ConfirmDelete<ModuleName>Input.php ` : checkbox input for deletion confirmation
@@ -278,8 +278,8 @@ The prompt asks you whether you want to edit resources:
278278
279279On confirmation, the process will create the following files:
280280
281- - ` src/<ModuleName>/src/Handler/Get<ModuleName>EditFormHandler.php ` : renders the resource edit form page
282- - ` src/<ModuleName>/src/Handler/Post<ModuleName>EditHandler.php ` : handles the resource update
281+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Get<ModuleName>EditFormHandler.php ` : renders the resource edit form page
282+ - ` src/<ModuleName>/src/Handler/<ModuleName>/ Post<ModuleName>EditHandler.php ` : handles the resource update
283283- ` src/<ModuleName>/src/Form/Edit<ModuleName>Form.php ` : form fields
284284- ` src/<ModuleName>/src/InputFilter/Edit<ModuleName>InputFilter.php ` : form field validators
285285- ` src/<ModuleName>/templates/<ModuleName>/<ModuleName>-edit-form.html.twig ` : renders the resource creation form
0 commit comments