HDVinnie
594b7864d9
refactor: adopt new helpers in laravel 9
2022-03-06 17:20:05 -05:00
HDVinnie
98521378d2
chore: phpdoc blocks
2022-01-10 17:46:43 -05:00
HDVinnie
3407075214
refactor: better php8 usage
...
- Change simple property init and assign to constructor promotion
- Remove unused variable in catch()
- Change docs types to union types, where possible
2021-05-15 22:41:28 -04:00
HDVinnie
7e664a667b
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-12-03 02:27:21 +00:00
HDVinnie
e92aabae41
update: phpdoc blocks
2020-12-02 21:27:04 -05:00
HDVinnie
a975116218
refactor: preslash simple functions
...
- Add pre-slash to short named functions to improve performance by almost 30%
- @see https://stackoverflow.com/questions/55419673/php7-adding-a-slash-to-all-standard-php-functions-php-cs-fixer-rule
2020-07-22 15:09:37 -04:00
HDVinnie
4b4e92221f
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-06-02 22:55:18 +00:00
HDVinnie
f69ecec866
refactor: code quality changes
2020-06-02 18:37:19 -04:00
HDVinnie
b275e9ba82
refactor: combine nested if statements
...
### `Combine If Rector`
Merges nested if statements
```diff
class SomeClass {
public function run()
{
- if ($cond1) {
- if ($cond2) {
- return 'foo';
- }
+ if ($cond1 && $cond2) {
+ return 'foo';
}
}
}
```
2020-02-13 11:26:54 -05:00
HDVinnie
e47afe4ab4
chore: styleci
2020-02-12 14:51:22 -05:00
HDVinnie
80c842e39c
chore: update license block
...
- make styleci happy
2020-02-12 14:49:18 -05:00
HDVinnie
dbb928f940
chore: update license block
2020-02-12 14:45:59 -05:00
HDVinnie
9a893662de
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-01-08 16:28:32 +00:00
HDVinnie
d889971834
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2019-11-05 22:40:30 +00:00
HDVinnie
eed3b51c92
(Update) CRUDDY PT.7 🚀
2019-10-25 17:35:14 -04:00
HDVinnie
426b801eda
(Update) CRUDDY PT.5 🚀
2019-10-23 16:59:03 -04:00
Laravel Shift
4853105815
Shift to consistent, fluent response chains
2019-05-09 00:05:17 +00:00
Laravel Shift
97e88dd68b
Leverage injected request object
...
Laravel automatically injects the current Http [request object][1] to all Controller actions and Middleware. Leveraging this object improves consistency and testability.
[1]: https://laravel.com/docs/5.7/requests#accessing-the-request
2019-05-09 00:05:13 +00:00
Laravel Shift
dcc003602b
Adopt Laravel coding style
...
The Laravel framework adopts the PSR-2 coding style with some additions.
Laravel apps *should* adopt this coding style as well.
However, Shift allows you to customize the adopted coding style through
the [.shiftrc][1] file by using your [PHP CS Fixer][2] config.
[1]: https://laravelshift.com/shiftrc-configuration-file
[2]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
2019-05-09 00:04:58 +00:00
HDVinnie
67339d7329
(Update) PHPDocs 🚀
2019-04-03 20:02:01 -04:00
HDVinnie
d3d3438c61
(Fix) TwoStep Auth System 🐛
...
- TODO: move views to be dependant and not a extension of default blade.
2019-01-10 21:24:35 -05:00
HDVinnie
2f2c52328b
Apply fixes from StyleCI
2018-12-06 22:57:41 +00:00
HDVinnie
00bb324053
Apply fixes from StyleCI
2018-12-06 14:42:13 +00:00
HDVinnie
6441ca7fb7
(Update) Mass Controllers Cleanup
2018-06-06 23:49:27 -04:00
poppabear8883
afad6aca27
(Update) Cleanup Trait
...
- Removed unused request
- Updated scope on trait method to private
- Add type hint in middleware method
2018-03-22 09:22:40 -04:00
HDVinnie
f3010a3d49
(Update) Update Middelware
...
- remove facade use and replace with helpers
- cleanup
2018-03-21 12:03:16 -04:00
Hyleus
777bb63880
Change license to AGPL
2018-02-12 17:27:32 +01:00
HDVinnie
7f4987a92d
(Update) Users Security Settings
...
- Ability for user to turn on or off TwoStepAuth
2018-01-25 18:23:07 -05:00
HDVinnie
99f6a5e21f
(Feature) TwoStepAuth Initial Release
2018-01-25 18:10:53 -05:00