@@ -23,7 +23,7 @@ public function it_maps_entities(): void
23
23
24
24
$ this ->assertFalse (File::exists ($ destination ), 'The destination file already exists. ' );
25
25
26
- Artisan::call ('make:doctrine: mapping Foo ' );
26
+ Artisan::call ('make:mapping Foo ' );
27
27
28
28
$ this ->assertTrue (File::exists ($ destination ), 'The file was not generated where we expect. ' );
29
29
@@ -70,7 +70,7 @@ public function it_maps_value_objects(): void
70
70
71
71
$ this ->assertFalse (File::exists ($ destination ), 'The destination file already exists. ' );
72
72
73
- Artisan::call ('make:doctrine: mapping Foo --value ' );
73
+ Artisan::call ('make:mapping Foo --value ' );
74
74
75
75
$ this ->assertTrue (File::exists ($ destination ), 'The file was not generated where we expect. ' );
76
76
@@ -116,7 +116,7 @@ public function it_allows_configuring_namespace_of_mapping_class(): void
116
116
117
117
$ this ->assertFalse (File::exists ($ destination ), 'The destination file already exists. ' );
118
118
119
- Artisan::call ('make:doctrine: mapping Foo ' );
119
+ Artisan::call ('make:mapping Foo ' );
120
120
121
121
$ this ->assertTrue (File::exists ($ destination ), 'The file was not generated where we expect. ' );
122
122
@@ -165,7 +165,7 @@ public function it_handles_all_customized_namespaces(): void
165
165
166
166
$ this ->assertFalse (File::exists ($ destination ), 'The destination file already exists. ' );
167
167
168
- Artisan::call ('make:doctrine: mapping Bar ' );
168
+ Artisan::call ('make:mapping Bar ' );
169
169
170
170
$ this ->assertTrue (File::exists ($ destination ), 'The file was not generated where we expect. ' );
171
171
0 commit comments