Skip to content

Commit 112b8a7

Browse files
chore: resolved merge conflict in composer.lock
2 parents abf5d1a + 7d6bdd7 commit 112b8a7

22 files changed

+181
-194
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"firebase/php-jwt": "v6.10.*",
3+
"firebase/php-jwt": "v6.11.*",
44
"webonyx/graphql-php": "^15.13"
55
}
66
}

composer.lock

Lines changed: 150 additions & 140 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"devDependencies": {
3-
"@prettier/plugin-php": "^0.22.2",
3+
"@prettier/plugin-php": "^0.22.4",
44
"@stoplight/spectral-cli": "^6.14.2"
55
}
66
}

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Core/Auth.inc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,13 @@ class Auth {
101101
* Provides additional logic whenever authentication is successful. This is intended to be overridden by a
102102
* child Auth class when it needs something specific to happen after a client successfully authenticates.
103103
*/
104-
protected function on_successful_auth(): void {
105-
}
104+
protected function on_successful_auth(): void {}
106105

107106
/**
108107
* Provides additional logic whenever authentication has failed. This is intended to be overridden by a
109108
* child Auth class when it needs something specific to happen after a client fails to authenticate.
110109
*/
111-
protected function on_failed_auth(): void {
112-
}
110+
protected function on_failed_auth(): void {}
113111

114112
/**
115113
* Defines the steps required for users to authenticate wit this authentication method. This method must be

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Core/Field.inc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,7 @@ class Field {
479479
* @param mixed $value The value being validated. In the event that this is a `many` field, this method will
480480
* receive each value of the array individually, not the array value itself.
481481
*/
482-
public function validate_extra(mixed $value): void {
483-
}
482+
public function validate_extra(mixed $value): void {}
484483

485484
/**
486485
* Ensures this field has a parent model context assigned if a parent model context is required.

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Core/Form.inc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,7 @@ class Form {
361361
* Performs tasks when the Form page is initially loaded. This method is intended to be overridden by the child
362362
* class.
363363
*/
364-
public function on_load(): void {
365-
}
364+
public function on_load(): void {}
366365

367366
/**
368367
* Performs validation and saves the Model assigned to this ModelForm.

0 commit comments

Comments
 (0)