The following debugging information was generated by Atom Beautify
on Thu Nov 21 2019 16:09:07 GMT+0100 (Central European Standard Time)
.
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
1. Install PHP OneDark scheme https://github.com/jesusOmar/one-dark-phpstorm | |
2. Make sure favourite icon is working: https://askubuntu.com/questions/1294102/phpstorm-favorite-not-working-after-changing-version | |
3. Make sure to use PHP-CS-FIXER Filewatcher https://www.youtube.com/watch?v=WCvvaxQ0y8M | |
4. Install Laravel Blade & Other packages. |
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 | |
/* | |
* This document has been generated with | |
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15.3|configurator | |
* you can change this configuration by importing this file. | |
*/ | |
return PhpCsFixer\Config::create() | |
->setRules([ | |
'@PSR2' => true, | |
'blank_line_after_namespace' => true, |
The following debugging information was generated by Atom Beautify
on Thu Nov 21 2019 10:51:18 GMT+0100 (Central European Standard Time)
.
The following debugging information was generated by Atom Beautify
on Thu Nov 14 2019 13:11:05 GMT+0100 (Central European Standard Time)
.
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 | |
namespace App\Http\Controllers\Auth; | |
use App\User; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Support\Facades\Validator; | |
use Illuminate\Foundation\Auth\RegistersUsers; | |
use Illuminate\Http\Request; | |
use App\Helper\GeoCoordinates; |