for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WITR\TopTwenty;
use DB;
class SQLReader implements Reader {
public function get()
{
$toptwenty = DB::connection('logger')->table('top_20')->get();
return $toptwenty;
}
public function getWeek()
$toptwenty = DB::connection('logger')->table('top_week')->get();