Completed
Push — master ( 87c960...50a753 )
by Can
03:58 queued 55s
created
tests/database/factories/MemberFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 |
11 11
 */
12 12
 
13
-$factory->define(\Canylmz\Rating\Test\Models\Member::class, function () {
13
+$factory->define(\Canylmz\Rating\Test\Models\Member::class, function() {
14 14
     return [
15 15
         'name'           => str_random(10),
16 16
     ];
Please login to merge, or discard this patch.
tests/database/factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 |
11 11
 */
12 12
 
13
-$factory->define(\Canylmz\Rating\Test\Models\User::class, function () {
13
+$factory->define(\Canylmz\Rating\Test\Models\User::class, function() {
14 14
     return [
15 15
         'name'           => 'Name'.str_random(5),
16 16
         'email'          => str_random(5).'@gmail.com',
Please login to merge, or discard this patch.