| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function up() |
||
| 32 | { |
||
| 33 | $this->schema->create('oauth_refresh_tokens', function (Blueprint $table) { |
||
| 34 | $table->string('id', 100)->primary(); |
||
| 35 | $table->string('access_token_id', 100)->index(); |
||
| 36 | $table->boolean('revoked'); |
||
| 37 | $table->dateTime('expires_at')->nullable(); |
||
| 38 | }); |
||
| 39 | } |
||
| 40 | |||
| 61 |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.