File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
tests/Feature/Http/Controllers Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 297
297
*/
298
298
'strategies ' => [
299
299
'metadata ' => [
300
- Strategies \Metadata \GetFromDocBlocks::class,
300
+ // Strategies\Metadata\GetFromDocBlocks::class,
301
301
AjCastro \ScribeTdd \Extracting \Strategies \Metadata \GetFromDocBlocksFromScribeTdd::class,
302
302
],
303
303
'urlParameters ' => [
304
304
// Strategies\UrlParameters\GetFromLaravelAPI::class,
305
305
// Strategies\UrlParameters\GetFromLumenAPI::class,
306
- // Strategies\UrlParameters\GetFromUrlParamTag::class,
306
+ Strategies \UrlParameters \GetFromUrlParamTag::class,
307
+ AjCastro \ScribeTdd \Extracting \Strategies \UrlParameters \GetFromUrlParamTagFromScribeTdd::class,
307
308
],
308
309
'queryParameters ' => [
309
310
// Strategies\QueryParameters\GetFromFormRequest::class,
Original file line number Diff line number Diff line change 26
26
];
27
27
});
28
28
29
+ /**
30
+ * @urlParam name string required This urlParam is not parsed because it is overwritten in the urlParam located in DynamicDataTest.
31
+ */
29
32
Route::get ('/dynamic_data/{name} ' , function ($ name ) {
30
33
return [
31
34
'name ' => $ name ,
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class DynamicDataTest extends TestCase
15
15
*
16
16
* This is a description of a dynamic data endpoint
17
17
*
18
+ * @urlParam name string required The name of the dynamic data.
18
19
* @dataProvider myDataProvider
19
20
*/
20
21
public function test_dynamic_data ($ name )
You can’t perform that action at this time.
0 commit comments