HDVinnie
472c820f99
update: UNIT3D linting
...
- github action updated with new ruleset in pint.json
- codebase linted with new ruleset
- contributors can now run `./vendor/bin/pint`
- action workflow will auto correct any lint issues upon commit/opened pull request
2023-02-02 08:02:34 -05:00
HDVinnie
35bfa41b97
refactor: user tagging
...
- simplify user tagging for posts and comments
2022-12-26 20:50:38 -05:00
HDVinnie
2ca429c4ce
Revert "PSR12 Linting"
...
This reverts commit 7e65e1d589 .
2022-09-11 19:51:58 -04:00
HDVinnie
7e65e1d589
PSR12 Linting
2022-09-11 23:50:41 +00:00
HDVinnie
594b7864d9
refactor: adopt new helpers in laravel 9
2022-03-06 17:20:05 -05:00
HDVinnie
166f3ccda8
update: repositories
2022-02-28 05:01:56 -05:00
HDVinnie
f9d2336e4f
chore: lint
2022-01-23 17:58:09 -05:00
HDVinnie
00d00024e5
chore: cleanup
2022-01-23 17:42:16 -05:00
HDVinnie
98521378d2
chore: phpdoc blocks
2022-01-10 17:46:43 -05:00
HDVinnie
d7cb337f5f
chore: streamline query builder orderBy calls with asc and desc arguments
2022-01-08 03:34:17 -05:00
HDVinnie
97394c062f
chore: adopt type hints
2022-01-07 23:35:33 -05:00
HDVinnie
2a53cea216
refactor: newline after statement
2021-09-28 12:49:46 -04:00
clandestine8
a737482e79
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2021-09-06 23:26:02 +00:00
HDVinnie
dcbb4753d4
fix : #1867
...
- close #1867
- torrent cards and grouping have been removed. They will be added again via Livewire and AlpineJS soon.
- NOTE: To avoid errors for users who have there default torrent layout as the now removed cards or grouping please run the following command in php artisan tinker. $users = User:all(); foreach($users as $user) { $user->torrent_layout = 0; $user->save(); }
2021-08-10 19:28:17 -04:00
HDVinnie
321847e067
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2021-05-16 02:41:53 +00: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
07bb03c9bc
Revert "refactor: dynamic calls to static"
...
This reverts commit 71ff333eb4 .
2021-05-09 10:49:39 -04:00
HDVinnie
71ff333eb4
refactor: dynamic calls to static
2021-04-27 21:35:23 -04:00
HDVinnie
ae819332d3
refactor: torrent request search
...
- rewritten to livewire and alpine
2021-03-29 09:50:11 -04:00
HDVinnie
2a74e9c753
refactor: tagged user repository
2020-12-30 12:39:24 -05:00
HDVinnie
74e9948b7c
refactor: chat repository
2020-12-30 12:38:54 -05:00
HDVinnie
e52de0346d
cleanup: chat repository
2020-12-28 23:53:35 -05:00
HDVinnie
467d31f10a
refactor: constructor promotions
2020-12-17 23:25:50 -05:00
HDVinnie
7244ab85f8
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-11-01 17:06:17 +00:00
HDVinnie
21a25d326d
fix: movie wishlist system
2020-11-01 12:05:41 -05:00
HDVinnie
992245bbcc
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-10-28 20:42:44 +00:00
HDVinnie
e5a4a16ddf
refactor: meta data system
...
- Complete rewrite of meta data system
- New media hub feature.
- Torrent Bumping Refactor
- Wish System Disabled until refactored
- Fetch meta command added for fetchinng new meta on prexsisnting torrents.
- plus alot more
- closes #1428
- closes #1344
- closes #1147
- closes #361
2020-10-28 16:42:22 -04:00
HDVinnie
01093d711c
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-07-28 16:54:24 +00:00
HDVinnie
29628335f0
update: phpdoc blocks
2020-07-22 23:08:40 -04: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
e7ccde0190
refactor: rename property to match type
2020-07-22 14:50:41 -04:00
HDVinnie
c8adeb7d35
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-06-07 02:09:28 +00:00
HDVinnie
60819ae7ac
update: torrent faceted repository
2020-06-06 21:44:33 -04:00
HDVinnie
609661367e
update: request faceted repository
2020-06-06 21:44:19 -04:00
HDVinnie
608c508fe7
refactor: symplify quote escapes
2020-04-24 11:19:08 -04:00
innocente205
7a119993fe
Update ChatRepository.php
...
Lookup the 'command' instead of the 'slug' to allow changing the systembot name.
2020-04-19 12:58:49 +07:00
Ben Johnson
aa32a893fa
tests: Implement TorrentController API tests
...
As part of this effort, a dedicated "torrents" storage location was
added to filesystems.php, which affects the torrent file storage
location. Accordingly, the torrent files in existing installations will
need to be moved (or symlinked) upon upgrade. The primary reason for
this change is mentioned in the Laravel docs: "This convention will
keep your publicly accessible files in one directory that can be easily
shared across deployments when using zero down-time deployment systems
like Envoyer."
2020-02-24 15:24:50 -05:00
Ben Johnson
5db70a9ea8
tests: Flesh-out several more ChatController tests
2020-02-20 16:38:43 -05:00
HDVinnie
605c337204
refactor: encapsed strings to sprintf
2020-02-17 13:52:20 -05:00
HDVinnie
bb0c216350
refactor: simplify if bool returns
2020-02-16 21:23:44 -05:00
HDVinnie
0eb606aa51
refactor: remove unnecessary ternary expression
2020-02-14 13:08:04 -05: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
285ecfa38b
refactor: count on null
2020-02-12 19:15:58 -05:00
HDVinnie
780e0c1f0e
chore: update license block
2020-02-12 15:05:34 -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
c8f2390c4d
Apply fixes from StyleCI
...
[ci skip] [skip ci]
2020-01-06 15:38:43 +00:00
HDVinnie
bf4487dbf9
(Update) TorrentFacetedRepository 🚀
2019-11-06 06:42:48 -05:00