Browse Source

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
Stefan Bauer 6 years ago
parent
commit
12a4885a47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      database/factories/UserFactory.php

+ 1 - 1
database/factories/UserFactory.php

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