Fix phpdoc to order by syntax convention (#5005)

Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html
This commit is contained in:
Stefan Bauer 2019-04-24 14:38:18 +02:00 committed by Taylor Otwell
parent 60db703a27
commit 12a4885a47
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php
/* @var $factory \Illuminate\Database\Eloquent\Factory */
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\User;
use Illuminate\Support\Str;