Completed
Branch master (bb48cc)
by vijay
148:50 queued 92:39
created
database/migrations/2016_02_15_094703_create_frontend_pages_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('frontend_pages', function (Blueprint $table) {
15
+        Schema::create('frontend_pages', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('parent_page_id');
18 18
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2016_01_29_050144_create_template_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('template_types', function (Blueprint $table) {
15
+        Schema::create('template_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
migrations/2017_01_22_103851_create_product_bundle_relations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('product_bundle_relations', function (Blueprint $table) {
15
+        Schema::create('product_bundle_relations', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('product_id')->unsigned();
18 18
             $table->foreign('product_id')->references('id')->on('products');
Please login to merge, or discard this patch.
database/migrations/2016_01_28_061648_create_group_features_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('group_features', function (Blueprint $table) {
15
+        Schema::create('group_features', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('group_id')->unsigned();
18 18
             $table->foreign('group_id')->references('id')->on('product_groups');
Please login to merge, or discard this patch.
database/migrations/2016_02_15_131004_create_widgets_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('widgets', function (Blueprint $table) {
15
+        Schema::create('widgets', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('type');
Please login to merge, or discard this patch.
database/migrations/2016_01_12_043314_create_promotion_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('promotion_types', function (Blueprint $table) {
15
+        Schema::create('promotion_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_02_08_093841_create_plans_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('plans', function (Blueprint $table) {
15
+        Schema::create('plans', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('description');
Please login to merge, or discard this patch.
migrations/2017_01_27_131931_create_promo_product_relations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('promo_product_relations', function (Blueprint $table) {
15
+        Schema::create('promo_product_relations', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('promotion_id')->unsigned();
18 18
             $table->foreign('promotion_id')->references('id')->on('promotions');
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/PasswordController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      *
67 67
      * @param Request $request
68 68
      *
69
-     * @return Response
69
+     * @return \Illuminate\Http\RedirectResponse
70 70
      */
71 71
     public function postReset(Request $request)
72 72
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
             'email', 'password', 'password_confirmation', 'token'
81 81
         );
82 82
 
83
-        $response = \Password::reset($credentials, function ($user, $password) {
83
+        $response = \Password::reset($credentials, function($user, $password) {
84 84
             $user->password = bcrypt($password);
85 85
 
86 86
             $user->save();
Please login to merge, or discard this patch.