Skip to content

merge main Shift 117652 #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8b2f39f
Bump doctrine/dbal from 3.8.3 to 3.8.4 (#193)
dependabot[bot] May 3, 2024
2e80013
Bump phpunit/phpunit from 10.5.19 to 10.5.20 (#192)
dependabot[bot] May 3, 2024
fbba1b4
Bump the php-dependencies group with 3 updates (#191)
dependabot[bot] May 3, 2024
ea680d8
Bump the js-dependencies group with 2 updates (#190)
dependabot[bot] May 3, 2024
fab3323
Bump spatie/laravel-ignition in the php-dependencies group (#194)
dependabot[bot] May 10, 2024
b0bb6b1
Bump the js-dependencies group with 2 updates (#195)
dependabot[bot] May 10, 2024
ab66a36
Bump sass from 1.77.0 to 1.77.1 in the js-dependencies group (#196)
dependabot[bot] May 15, 2024
9b7172d
--- (#197)
dependabot[bot] May 22, 2024
eb09973
--- (#198)
dependabot[bot] May 22, 2024
7bda59a
Bump league/flysystem-aws-s3-v3 in the php-dependencies group (#200)
dependabot[bot] May 29, 2024
d7159f7
Bump vite from 5.2.11 to 5.2.12 in the js-dependencies group (#199)
dependabot[bot] May 29, 2024
416751c
Bump sass from 1.77.2 to 1.77.4 in the js-dependencies group (#201)
dependabot[bot] Jun 9, 2024
3d7991f
Bump sentry/sentry-laravel in the php-dependencies group (#202)
dependabot[bot] Jun 12, 2024
a33af3e
Bump the js-dependencies group with 3 updates (#203)
dependabot[bot] Jun 12, 2024
f4b98ea
Bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (#204)
dependabot[bot] Jun 12, 2024
1c12a26
Bump the js-dependencies group with 3 updates (#206)
dependabot[bot] Jun 20, 2024
339f1aa
Bump the php-dependencies group with 2 updates (#205)
dependabot[bot] Jun 20, 2024
66d4770
Bump phpunit/phpunit from 10.5.20 to 10.5.25 (#207)
dependabot[bot] Jul 3, 2024
11c3679
Bump doctrine/dbal from 3.8.4 to 3.8.6 (#208)
dependabot[bot] Jul 3, 2024
7c9204d
Bump the js-dependencies group with 2 updates (#209)
dependabot[bot] Jul 3, 2024
e503431
Bump the js-dependencies group with 3 updates (#210)
dependabot[bot] Jul 16, 2024
3d4f853
Bump the php-dependencies group with 2 updates (#212)
dependabot[bot] Jul 17, 2024
4e45caf
Bump the js-dependencies group with 3 updates (#211)
dependabot[bot] Jul 17, 2024
869e415
Bump the php-dependencies group with 2 updates (#213)
dependabot[bot] Jul 24, 2024
e3337e9
Bump guzzlehttp/guzzle from 7.9.1 to 7.9.2 in the php-dependencies gr…
dependabot[bot] Aug 1, 2024
e8f6327
Bump the js-dependencies group with 3 updates (#215)
dependabot[bot] Aug 1, 2024
da9deb1
allow test withoutVite manifest + update lock
alphaolomi Aug 5, 2024
f5f9b6f
revert to php version "8.3.*"
alphaolomi Aug 5, 2024
291fe5a
Merge branch 'main' into shift-117652
alphaolomi Aug 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/Models/Paste.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ class Paste extends Model

public static function fromRequest(Request $request): self
{
return static::createNew(new static(), $request);
return static::createNew(new static, $request);
}

public static function fromFork(self $fork, Request $request): self
{
$paste = new static();
$paste = new static;
$paste->parent_id = $fork->id;

return static::createNew($paste, $request);
Expand Down
Loading
Loading