@@ -1,12 +1,12 @@ |
||
| 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 | |
@@ -1,12 +1,12 @@ |
||
| 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 | |
@@ -1,12 +1,12 @@ |
||
| 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 | |
@@ -1,12 +1,12 @@ |
||
| 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 | |
@@ -1,12 +1,12 @@ |
||
| 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 | |
@@ -13,7 +13,7 @@ |
||
| 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'); |
@@ -13,7 +13,7 @@ |
||
| 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'); |