Fix formatting and interfaces in nearly every file

This commit is contained in:
Nabeel Shahzad
2018-03-19 20:50:40 -05:00
parent 04c5b9e7bf
commit ccf56ddec1
331 changed files with 3282 additions and 2492 deletions

View File

@@ -2,20 +2,25 @@
namespace App\Services;
use App\Interfaces\Service;
use App\Models\Enums\AnalyticsDimensions;
use DB;
use Irazasyed\LaravelGAMP\Facades\GAMP;
use Log;
use PDO;
class AnalyticsService
/**
* Class AnalyticsService
* @package App\Services
*/
class AnalyticsService extends Service
{
/**
* Send out some stats about the install
*/
public function sendInstall()
{
if(config('app.analytics') === false) {
if (config('app.analytics') === false) {
return;
}
@@ -38,5 +43,4 @@ class AnalyticsService
Log::error($e->getMessage());
}
}
}