mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
e3e0d57f56
* Add IDE Helper files * Cleanup imports - Alphabetises imports - Removes unused imports * Add Platform requirements * Move filling asset into block where asset exists * Remove duplicate array keys
40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<?php
|
|
/*! \mainpage Snipe-IT Code Documentation
|
|
*
|
|
* \section intro_sec Introduction
|
|
*
|
|
* This documentation is designed to allow developers to easily understand
|
|
* the backend code of Snipe-IT. Familiarity with the PHP language is assumed,
|
|
* and experience with the Laravel framework (version 5.2) will be very helpful.
|
|
*
|
|
* **THIS DOCUMENTATION DOES NOT COVER INSTALLATION.** If you're here and you're not a
|
|
* developer, you're probably in the wrong place. Please see the
|
|
* [Installation documentation](http://docs.snipeitapp.com) for
|
|
* information on how to install Snipe-IT.
|
|
*
|
|
* To learn how to set up a development environment and get started developing for Snipe-IT,
|
|
* please see the [contributing documentation](http://docs.snipeitapp.com/contributing.html).
|
|
*
|
|
* Only the Snipe-IT specific controllers, models, helpers, service providers,
|
|
* etc have been included in this documentation (excluding vendors, Laravel core, etc)
|
|
* for simplicity.
|
|
*/
|
|
namespace App\Http\Controllers;
|
|
|
|
use Auth;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
use Illuminate\Foundation\Validation\ValidatesRequests;
|
|
use Illuminate\Routing\Controller as BaseController;
|
|
|
|
abstract class Controller extends BaseController
|
|
{
|
|
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
|
|
|
public function __construct()
|
|
{
|
|
view()->share('signedIn', Auth::check());
|
|
view()->share('user', Auth::user());
|
|
}
|
|
}
|