Skip to content

Fix test

Fix test #1671

Triggered via push June 24, 2026 16:18
Status Failure
Total duration 23s
Artifacts

mago.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

10 errors, 13 warnings, and 10 notices
invalid-docblock: stripe/views/action-settings/payments-options.php#L283
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: stripe/views/action-settings/payments-options.php#L249
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: stripe/views/action-settings/payments-options.php#L211
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: classes/helpers/FrmCSVExportHelper.php#L213
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: classes/helpers/FrmStylesCardHelper.php#L209
Unexpected token in PHPDoc type >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
invalid-docblock: classes/helpers/FrmStylesCardHelper.php#L209
Unexpected token in PHPDoc type >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
docblock-type-mismatch: paypal/helpers/FrmPayPalLiteConnectHelper.php#L913
Docblock type mismatch for variable `$data`. >This docblock asserts the type should be `array<array-key, mixed>`, but it was previously defined as `object`. The type of the variable defined in the docblock does not match the previously defined type. Help: Change the docblock type to match `object`, or update the variable definition to a compatible type `array<array-key, mixed>`.
invalid-docblock: classes/views/frm-form-actions/_email_settings.php#L130
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: classes/views/frm-form-actions/_email_settings.php#L130
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
invalid-docblock: classes/views/styles/_sample_form.php#L74
Unclosed inline tag >This part of the docblock has a syntax error >The error is within this docblock >This docblock is associated with the following statement An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
Mago
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4.1.1. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
possibly-invalid-array-access: classes/models/fields/FrmFieldUserID.php#L71
Cannot perform array access on value of type `int`. >The expression might be `int` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldUserID.php#L71
Cannot perform array access on value of type `object`. >The expression might be `object` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/controllers/FrmFormsController.php#L1483
Cannot perform array access on value of type `bool`. >The expression might be `bool` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/controllers/FrmFormsController.php#L1483
Cannot perform array access on value of type `bool`. >The expression might be `bool` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/controllers/FrmFormsController.php#L1401
Cannot perform array access on value of type `bool`. >The expression might be `bool` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldTextarea.php#L106
Cannot perform array access on value of type `object`. >The expression might be `object` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldTextarea.php#L101
Cannot perform array access on value of type `int`. >The expression might be `int` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldTextarea.php#L101
Cannot perform array access on value of type `object`. >The expression might be `object` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldNumber.php#L126
Cannot perform array access on value of type `int`. >The expression might be `int` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
possibly-invalid-array-access: classes/models/fields/FrmFieldNumber.php#L125
Cannot perform array access on value of type `int`. >The expression might be `int` here. Attempting to use a scalar value as an array will result in a runtime error. Help: Ensure the variable holds an array before accessing it.
loop-does-not-iterate: paypal/controllers/FrmPayPalLiteActionsController.php#L667
Loop is unconditionally terminated and will not iterate. >This loop will only execute once at most >The loop is exited by this unconditional `return` statement Loops that do not iterate are often misleading and can indicate a logic error or redundant code. Help: Consider refactoring the code. If the loop is intended to run only once, an `if` statement might be clearer.
loop-does-not-iterate: classes/views/frm-fields/front-end/product-single.php#L18
Loop is unconditionally terminated and will not iterate. >This loop will only execute once at most >The loop is exited by this unconditional `break` statement Loops that do not iterate are often misleading and can indicate a logic error or redundant code. Help: Consider refactoring the code. If the loop is intended to run only once, an `if` statement might be clearer.
valid-docblock: stripe/views/action-settings/payments-options.php#L211
Unclosed inline tag An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
valid-docblock: classes/helpers/FrmDashboardHelper.php#L67
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
valid-docblock: classes/helpers/FrmAppHelper.php#L4358
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
valid-docblock: classes/helpers/FrmFieldsHelper.php#L523
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
valid-docblock: classes/helpers/FrmCSVExportHelper.php#L213
Unclosed inline tag An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
valid-docblock: classes/helpers/FrmStylesCardHelper.php#L209
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
valid-docblock: classes/views/frm-form-actions/_email_settings.php#L130
Unclosed inline tag An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
valid-docblock: classes/controllers/FrmAddonsController.php#L1544
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.
valid-docblock: classes/views/styles/_sample_form.php#L74
Unclosed inline tag An inline tag such as `{@see Foo}` was opened with `{` but never closed. Help: Add the closing `}` that ends the inline tag.
valid-docblock: classes/helpers/FrmHtmlHelper.php#L22
Unexpected token in PHPDoc type This token cannot appear here, so the type or tag stops making sense at this point. Help: Remove the stray token, or fix the type or tag syntax leading up to it.