Created
November 30, 2017 19:40
-
-
Save Naoray/b541bc1e07263e1286473f714419a670 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ContactInformationController extends Controller | |
{ | |
//... | |
/** | |
* Update the user's contact information settings. | |
* | |
* @param Request $request | |
* @return Response | |
*/ | |
public function update(Request $request) | |
{ | |
$this->interaction( | |
$request, UpdateContactInformation::class, | |
[$request->user(), $request->all()] | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment