We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 11 | class CampaignController extends Controller |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Initialize the class |
||
| 15 | * and set the middleware |
||
| 16 | */ |
||
| 17 | 1 | public function __construct() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Get all campaigns |
||
| 24 | * 20 queries per page |
||
| 25 | * |
||
| 26 | * @return CampaignCollection |
||
| 27 | */ |
||
| 28 | 1 | public function index() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Get all details of a campaign |
||
| 35 | * |
||
| 36 | * @return CampaignResource |
||
| 37 | */ |
||
| 38 | public function show($campaign) |
||
| 44 | |||
| 45 | } |
||
| 46 |