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
Running on 8.2 yields deprecation:
Deprecated: Creation of dynamic property Luracast\Restler\Data\Validator::$restler is deprecated in /application/vendor/luracast/restler/src/Scope.php
https://php.watch/versions/8.2/dynamic-properties-deprecated#AllowDynamicProperties
The text was updated successfully, but these errors were encountered:
You can just add the property publicly to your class
class Device { public $restler; // here public function index() { return [ 'success' => [ 'code' => 200, 'message' => 'Restler is up and running!', ], ]; } }
Sorry, something went wrong.
No branches or pull requests
Running on 8.2 yields deprecation:
Deprecated: Creation of dynamic property Luracast\Restler\Data\Validator::$restler is deprecated in /application/vendor/luracast/restler/src/Scope.php
https://php.watch/versions/8.2/dynamic-properties-deprecated#AllowDynamicProperties
The text was updated successfully, but these errors were encountered: