mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 11:43:33 +01:00
8 lines
121 B
PHP
8 lines
121 B
PHP
<?php
|
|
|
|
class SetupController extends Controller {
|
|
public function showSetup() {
|
|
return View::make('setup');
|
|
}
|
|
}
|