mirror of https://github.com/pixelfed/pixelfed.git
12 lines
193 B
PHP
12 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Admin;
|
||
|
|
||
|
use Cache, DB;
|
||
|
use Illuminate\Http\Request;
|
||
|
use App\{Contact, Like, Media, Page, Profile, Report, Status, User};
|
||
|
|
||
|
trait AdminSupportController
|
||
|
{
|
||
|
|
||
|
}
|