Completed
Push — master ( 453e3c...2f13e8 )
by Mahmoud
18:11 queued 11:11
created
app/Containers/Item/Data/Factories/ItemFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use App\Containers\Item\Models\Item;
4 4
 use App\Containers\Item\Models\ItemType;
5 5
 
6
-$factory->define(Item::class, function (Faker\Generator $faker) {
6
+$factory->define(Item::class, function(Faker\Generator $faker) {
7 7
     return [
8 8
         'name'           => $faker->name(),
9 9
         'description'    => $faker->text(20),
Please login to merge, or discard this patch.
app/Containers/Item/Data/Factories/ItemVariantValueFactory.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 App\Containers\Item\Models\ItemVariantValue;
4 4
 
5
-$factory->define(ItemVariantValue::class, function (Faker\Generator $faker) {
5
+$factory->define(ItemVariantValue::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'value'            => $faker->lastName(),
8 8
     ];
Please login to merge, or discard this patch.
app/Containers/Item/Data/Factories/ItemVariantNameFactory.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 App\Containers\Item\Models\ItemVariantName;
4 4
 
5
-$factory->define(ItemVariantName::class, function (Faker\Generator $faker) {
5
+$factory->define(ItemVariantName::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'name'         => $faker->firstName(),
8 8
     ];
Please login to merge, or discard this patch.
app/Containers/Item/Data/Factories/ItemTypeFactory.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 App\Containers\Item\Models\ItemType;
4 4
 
5
-$factory->define(ItemType::class, function (Faker\Generator $faker) {
5
+$factory->define(ItemType::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'name'           => $faker->name(),
8 8
         'description'    => $faker->name(),
Please login to merge, or discard this patch.
Item/Data/Migrations/2016_06_29_110946_create_item_variant_values_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('item_variant_values', function (Blueprint $table) {
21
+        Schema::create('item_variant_values', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('value');
24 24
 
Please login to merge, or discard this patch.
Item/Data/Migrations/2016_06_29_110945_create_item_variant_names_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('item_variant_names', function (Blueprint $table) {
21
+        Schema::create('item_variant_names', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('name');
24 24
 
Please login to merge, or discard this patch.
Item/Data/Migrations/2016_06_29_110949_create_item_images_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('item_images', function (Blueprint $table) {
21
+        Schema::create('item_images', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('source');
Please login to merge, or discard this patch.
Containers/Item/Data/Migrations/2016_06_29_110947_create_items_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('items', function (Blueprint $table) {
21
+        Schema::create('items', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('sku')->unique();
24 24
 
Please login to merge, or discard this patch.
Item/Data/Migrations/2016_06_29_110944_create_item_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('item_types', function (Blueprint $table) {
21
+        Schema::create('item_types', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('name')->unique();
Please login to merge, or discard this patch.