<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| <?php | |
| use Illuminate\Support\Facades\Schema; | |
| use Illuminate\Database\Schema\Blueprint; | |
| use Illuminate\Database\Migrations\Migration; | |
| class AddRenewsAtColumnToSubscriptions extends Migration | |
| { | |
| /** | |
| * Run the migrations. |
| patbenatar.advanced-new-file | |
| formulahendry.auto-close-tag | |
| formulahendry.auto-rename-tag | |
| fosshaas.fontsize-shortcuts | |
| BriteSnow.vscode-toggle-quotes | |
| Zignd.html-css-class-completion | |
| christian-kohler.npm-intellisense | |
| christian-kohler.path-intellisense | |
| octref.vetur | |
| dbaeumer.vscode-eslint |
| use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; | |
| // Manually authenticate user in controller | |
| $token = new UsernamePasswordToken($user, null, 'main', $user->getRoles()); | |
| $this->get('security.token_storage')->setToken($token); | |
| $this->get('session')->set('_security_main', serialize($token)); |