Various new files after upgrade to Laravel 5.2

This commit is contained in:
James Cole
2016-01-08 15:56:35 +01:00
parent c7b47b4453
commit 180ec52798
2 changed files with 27 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
<?php
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding your
| database. Just tell the factory how a default model should look.
|
*/
$factory->define(FireflyIII\User::class, function (Faker\Generator $faker) {
return [
'name' => $faker->name,
'email' => $faker->email,
'password' => bcrypt(str_random(10)),
'remember_token' => str_random(10),
];
});

13
public/index.php Normal file → Executable file
View File

@@ -1,4 +1,5 @@
<?php <?php
/** /**
* Laravel - A PHP Framework For Web Artisans * Laravel - A PHP Framework For Web Artisans
* *
@@ -18,8 +19,7 @@
| |
*/ */
require __DIR__ . '/../bootstrap/autoload.php'; require __DIR__.'/../bootstrap/autoload.php';
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@@ -33,21 +33,21 @@ require __DIR__ . '/../bootstrap/autoload.php';
| |
*/ */
$app = require_once __DIR__ . '/../bootstrap/app.php'; $app = require_once __DIR__.'/../bootstrap/app.php';
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Run The Application | Run The Application
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Once we have the application, we can simply call the run method, | Once we have the application, we can handle the incoming request
| which will execute the request and send the response back to | through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative | the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them. | and wonderful application we have prepared for them.
| |
*/ */
$kernel = $app->make('Illuminate\Contracts\Http\Kernel'); $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle( $response = $kernel->handle(
$request = Illuminate\Http\Request::capture() $request = Illuminate\Http\Request::capture()
@@ -55,5 +55,4 @@ $response = $kernel->handle(
$response->send(); $response->send();
$kernel->terminate($request, $response); $kernel->terminate($request, $response);