Use implicit null instead of explicit

This commit is contained in:
Adam Wathan 2016-08-21 14:29:10 +02:00
parent 792dcd48c8
commit 3435710575
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
*/
$factory->define(App\User::class, function (Faker\Generator $faker) {
static $password = null;
static $password;
return [
'name' => $faker->name,