Completed
Push — dev5 ( 222021...7dd80f )
by Ron
08:28
created
database/factories/SystemTypesFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Faker\Generator as Faker;
4 4
 
5
-$factory->define(App\SystemTypes::class, function (Faker $faker) {
5
+$factory->define(App\SystemTypes::class, function(Faker $faker) {
6 6
     return [
7 7
         'sys_id'          => 1,
8 8
         'cat_id'          => 1,
Please login to merge, or discard this patch.
database/factories/SystemCategoriesFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Faker\Generator as Faker;
4 4
 
5
-$factory->define(App\SystemCategories::class, function (Faker $faker) {
5
+$factory->define(App\SystemCategories::class, function(Faker $faker) {
6 6
     return [
7 7
         'cat_id' => 1,
8 8
         'name'   => $faker->jobTitle()
Please login to merge, or discard this patch.
app/Http/Controllers/Installer/SystemsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     public function edit($id)
127 127
     {
128 128
         $system = SystemTypes::find($id);
129
-        $dataTypes  = SystemCustDataTypes::orderBy('name', 'ASC')->get();
129
+        $dataTypes = SystemCustDataTypes::orderBy('name', 'ASC')->get();
130 130
         
131 131
         $dropDown = [];
132 132
         foreach($dataTypes as $type)
Please login to merge, or discard this patch.