Skip to content

Commit 4220b1b

Browse files
authored
Merge pull request #5 from zachleigh/analysis-87AZL2
Apply fixes from StyleCI
2 parents b2cb785 + ccf9aeb commit 4220b1b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Exceptions/ResourceAlreadyExists.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ public static function fileExists($name)
1919
"File {$name} already exists at path."
2020
);
2121
}
22-
}
22+
}

tests/CommandTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ public function it_doesnt_overwrite_components_that_already_exist()
102102
$file = resource_path('assets/js/components/NewComponent.vue');
103103

104104
Artisan::call('vueg:component', [
105-
'name' => 'NewComponent'
105+
'name' => 'NewComponent',
106106
]);
107107

108108
$this->assertFileExists($file);
109109

110110
Artisan::call('vueg:component', [
111-
'name' => 'NewComponent'
111+
'name' => 'NewComponent',
112112
]);
113113
}
114114

@@ -208,13 +208,13 @@ public function it_doesnt_overwrite_mixin_that_already_exist()
208208
$file = resource_path('assets/js/mixins/NewMixin.js');
209209

210210
Artisan::call('vueg:mixin', [
211-
'name' => 'NewMixin'
211+
'name' => 'NewMixin',
212212
]);
213213

214214
$this->assertFileExists($file);
215215

216216
Artisan::call('vueg:mixin', [
217-
'name' => 'NewMixin'
217+
'name' => 'NewMixin',
218218
]);
219219
}
220220
}

0 commit comments

Comments
 (0)