We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
0.1.21
Local PHP
Linux
The extension should properly escape or handle PHP code in its output panel without trying to execute it as shell commands.
The extension is attempting to interpret PHP code as shell commands, leading to syntax errors in the output panel.
$children->each(function ($relationshipField) use ($model) { $className = "App\\DynamicApp\\Models\\" . ucfirst($relationshipField->attribute) . "Model"; $foreignKey = $relationshipField->foreign_key; \logger()->info('Processing relationship', [ 'model' => get_class($model), 'relationship' => $relationshipField->attribute, 'cascade_enabled' => $relationshipField->on_delete_cascade, 'is_force_deleting' => method_exists($model, 'isForceDeleting') ? $model->isForceDeleting() : false ]); } });
The text was updated successfully, but these errors were encountered:
#326
Sorry, something went wrong.
joetannenbaum
Successfully merging a pull request may close this issue.
Extension Version
0.1.21
PHP Binary
Local PHP
Operating System
Linux
What happened?
Expected Behavior
The extension should properly escape or handle PHP code in its output panel without trying to execute it as shell commands.
Actual Behavior
The extension is attempting to interpret PHP code as shell commands, leading to syntax errors in the output panel.
Steps to Reproduce
Mimimal Code Sample
The text was updated successfully, but these errors were encountered: