| 1 | <?php namespace Arcanedev\LaravelAuth; | ||
| 9 | class Auth | ||
| 10 | { | ||
| 11 | /* ----------------------------------------------------------------- | ||
| 12 | | Properties | ||
| 13 | | ----------------------------------------------------------------- | ||
| 14 | */ | ||
| 15 | /** | ||
| 16 | * Indicates if Passport migrations will be run. | ||
| 17 | * | ||
| 18 | * @var bool | ||
| 19 | */ | ||
| 20 | public static $runsMigrations = true; | ||
| 21 | |||
| 22 | /* ----------------------------------------------------------------- | ||
| 23 | | Main Methods | ||
| 24 | | ----------------------------------------------------------------- | ||
| 25 | */ | ||
| 26 | /** | ||
| 27 | * Publish the migrations. | ||
| 28 | */ | ||
| 29 | 225 | public static function publishMigrations() | |
| 33 | } | ||
| 34 |