Skip to content

Commit 869e415

Browse files
Bump the php-dependencies group with 2 updates (#213)
* Bump the php-dependencies group with 2 updates Bumps the php-dependencies group with 2 updates: [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) and [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel). Updates `guzzlehttp/guzzle` from 7.8.1 to 7.9.1 - [Release notes](https://github.com/guzzle/guzzle/releases) - [Changelog](https://github.com/guzzle/guzzle/blob/7.9/CHANGELOG.md) - [Commits](guzzle/guzzle@7.8.1...7.9.1) Updates `sentry/sentry-laravel` from 4.7.0 to 4.7.1 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.7.0...4.7.1) --- updated-dependencies: - dependency-name: guzzlehttp/guzzle dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Fix code styling --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
1 parent 4e45caf commit 869e415

File tree

2 files changed

+70
-70
lines changed

2 files changed

+70
-70
lines changed

app/Models/Paste.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ class Paste extends Model
2020

2121
public static function fromRequest(Request $request): self
2222
{
23-
return static::createNew(new static(), $request);
23+
return static::createNew(new static, $request);
2424
}
2525

2626
public static function fromFork(self $fork, Request $request): self
2727
{
28-
$paste = new static();
28+
$paste = new static;
2929
$paste->parent_id = $fork->id;
3030

3131
return static::createNew($paste, $request);

0 commit comments

Comments
 (0)