diff options
| author | horus | 2020-02-24 00:52:12 +0100 |
|---|---|---|
| committer | horus | 2020-02-24 00:52:12 +0100 |
| commit | 38843f78bfbd27969df853377696dc8f8c71a921 (patch) | |
| tree | d40f35eda1c39e727c73a7037e20d463ef03aaf1 /app/Http | |
| parent | 2cd1589d6ae7095770e8c5dda10b138861d70501 (diff) | |
| download | senpai-38843f78bfbd27969df853377696dc8f8c71a921.tar.gz | |
Adds models for score tracking.
Diffstat (limited to 'app/Http')
| -rw-r--r-- | app/Http/Controllers/.IndexController.php.swp | bin | 12288 -> 0 bytes | |||
| -rw-r--r-- | app/Http/Controllers/IndexController.php | 6 |
2 files changed, 6 insertions, 0 deletions
diff --git a/app/Http/Controllers/.IndexController.php.swp b/app/Http/Controllers/.IndexController.php.swp Binary files differdeleted file mode 100644 index efd5752..0000000 --- a/app/Http/Controllers/.IndexController.php.swp +++ /dev/null diff --git a/app/Http/Controllers/IndexController.php b/app/Http/Controllers/IndexController.php index c77de48..e6a263b 100644 --- a/app/Http/Controllers/IndexController.php +++ b/app/Http/Controllers/IndexController.php @@ -6,6 +6,7 @@ use Illuminate\Http\Request; use App\Libraries\AnimeSchedule; use App\Libraries\AnimeSeason; +use App\AnimeScore; class IndexController extends Controller { /** @@ -36,5 +37,10 @@ class IndexController extends Controller { public function test($param = null) { $season = new AnimeSeason(); + #$stats = new AnimeScore( 21 ); + + #var_dump($stats); + echo "<pre>"; + var_dump($season); } } |
