Skip to content

Commit

Permalink
Applied fixes from StyleCI (#16000)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Oct 19, 2016
1 parent 9c2f2ca commit bec2d79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Console/ModelMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function fire()

$this->call('make:migration', [
'name' => "create_{$table}_table",
'--create' => $table
'--create' => $table,
]);
}

Expand All @@ -51,7 +51,7 @@ public function fire()

$this->call('make:controller', [
'name' => "{$controller}Controller",
'--resource' => $this->option('resource')
'--resource' => $this->option('resource'),
]);
}
}
Expand Down Expand Up @@ -90,7 +90,7 @@ protected function getOptions()

['controller', 'c', InputOption::VALUE_NONE, 'Create a new controller for the model.'],

['resource', 'r', InputOption::VALUE_NONE, 'Indicates if the generated controller should be a resource controller', ],
['resource', 'r', InputOption::VALUE_NONE, 'Indicates if the generated controller should be a resource controller'],
];
}
}

0 comments on commit bec2d79

Please sign in to comment.