Completed
Push — dev5 ( 67318d...863f68 )
by Ron
13:05
created
app/Http/Controllers/Customers/CustomerController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     //  Toggle whether or not the customer is listed as a user favorite
107 107
     public function toggleFav($action, $id)
108 108
     {
109
-        switch ($action)
109
+        switch($action)
110 110
         {
111 111
             case 'add':
112 112
                 CustomerFavs::create([
Please login to merge, or discard this patch.
database/factories/CustomerContactsFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     ];
20 20
 });
21 21
 
22
-$factory->define(App\CustomerContacts::class, function (Faker $faker) use ($factory) {
22
+$factory->define(App\CustomerContacts::class, function(Faker $faker) use ($factory) {
23 23
     return [
24 24
         'cust_id' => factory(App\Customers::class)->create()->cust_id,
25 25
         'name'    => $faker->name,
Please login to merge, or discard this patch.