| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 18 | public function columns(): array |
||
| 19 | { |
||
| 20 | return [ |
||
| 21 | 'client_id' => $this->string(32)->notNull(), |
||
| 22 | 'public_key' => $this->string(200)->notNUll(), |
||
| 23 | 'private_key' => $this->string(200)->notNUll(), |
||
| 24 | 'encription_algorithm' => $this->string(100)->notNull() |
||
| 25 | ->defaultValue('RS256'), |
||
| 26 | ]; |
||
| 50 |