Skip to content

Commit 0283454

Browse files
Edit command
1 parent 3d8917c commit 0283454

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/GenerateApiResourceCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ protected function buildResource(string $class, string $name): string
171171
if ($count === 0) {
172172
$fields .= "'$property' => \$this->$property,\n";
173173
} else if ($count < $properties_length - 1) {
174-
$fields .= "'\t\t\t$property' => \$this->$property,\n";
174+
$fields .= "\t\t\t'$property' => \$this->$property,\n";
175175
} else {
176-
$fields .= "'\t\t\t$property' => \$this->$property";
176+
$fields .= "\t\t\t'$property' => \$this->$property";
177177
}
178178

179179
$count++;

0 commit comments

Comments
 (0)