| 1 | <?php |
||
| 7 | class WordPressApplication extends Application implements ApplicationContract |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Application type. |
||
| 11 | * |
||
| 12 | * @return string |
||
| 13 | */ |
||
| 14 | public function type() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Set application database and user. |
||
| 21 | * |
||
| 22 | * @param string $database |
||
| 23 | * @param string $user |
||
| 24 | * |
||
| 25 | * @return static |
||
| 26 | */ |
||
| 27 | public function usingDatabase(string $database, string $user) |
||
| 36 | } |
||
| 37 |