chore: add phpstan (#2383)

This commit is contained in:
Alexis Saettler
2019-02-07 22:44:34 +01:00
committed by GitHub
parent 4d4f2b200b
commit 92bef2413c
175 changed files with 1281 additions and 454 deletions
@@ -2,9 +2,9 @@
namespace App\Http\Controllers\Contacts;
use App\Models\Contact\Gift;
use App\Models\Contact\Contact;
use App\Http\Controllers\Controller;
use App\Traits\JsonRespondController;
use App\Services\Contact\Reminder\CreateReminder;
use App\Http\Requests\People\IntroductionsRequest;
use App\Services\Contact\Reminder\DestroyReminder;
@@ -12,11 +12,12 @@ use Illuminate\Database\Eloquent\ModelNotFoundException;
class IntroductionsController extends Controller
{
use JsonRespondController;
/**
* Show the form for editing the specified resource.
*
* @param Contact $contact
* @param Gift $gift
* @return \Illuminate\Http\Response
*/
public function edit(Contact $contact)