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