Completed
Push — master ( db8922...013eb5 )
by Nil
11:20
created
src/NilPortugues/Laravel5/JsonApi/Eloquent/EloquentHelper.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 11/27/15
5
- * Time: 7:47 PM.
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 11/27/15
5
+     * Time: 7:47 PM.
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace NilPortugues\Laravel5\JsonApi\Eloquent;
12 12
 
Please login to merge, or discard this patch.
tests/NilPortugues/Laravel5/JsonApi/Controller/JsonApiControllerTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 12/9/15
5
- * Time: 3:05 PM.
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 12/9/15
5
+     * Time: 3:05 PM.
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace NilPortugues\Tests\Laravel5\JsonApi\Controller;
12 12
 
Please login to merge, or discard this patch.
tests/NilPortugues/Laravel5/JsonApi/Eloquent/EloquentHelperTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 12/9/15
5
- * Time: 2:27 PM.
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 12/9/15
5
+     * Time: 2:27 PM.
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace NilPortugues\Tests\Laravel5\JsonApi\Eloquent;
12 12
 
Please login to merge, or discard this patch.
tests/NilPortugues/Laravel5/JsonApi/Facades/JsonApiSerializerTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 12/9/15
5
- * Time: 2:10 PM.
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 12/9/15
5
+     * Time: 2:10 PM.
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace NilPortugues\Tests\Laravel5\JsonApi\Facades;
12 12
 
Please login to merge, or discard this patch.
tests/NilPortugues/Laravel5/JsonApi/LaravelTestCase.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 12/9/15
5
- * Time: 5:24 PM.
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 12/9/15
5
+     * Time: 5:24 PM.
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace NilPortugues\Tests\Laravel5\JsonApi;
12 12
 
Please login to merge, or discard this patch.
Laravel5/JsonApi/Migrations/2015_11_13_181538_create_orders_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('orders', function (Blueprint $table) {
16
+        Schema::create('orders', function(Blueprint $table) {
17 17
             $table->integer('id', true);
18 18
 
19 19
             $table->integer('employee_id')->nullable()->index('employee_id_2');
Please login to merge, or discard this patch.
Laravel5/JsonApi/Migrations/2015_11_13_181538_create_employees_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('employees', function (Blueprint $table) {
16
+        Schema::create('employees', function(Blueprint $table) {
17 17
             $table->integer('id', true);
18 18
 
19 19
             $table->string('company', 50)->nullable()->index('company');
Please login to merge, or discard this patch.