catalyst / moodle-tool_cloudmetrics

Realtime metrics for Moodle
https://moodle.org/plugins/tool_cloudmetrics
GNU General Public License v3.0
0 stars 3 forks source link

Remove unnecessary dynamic properties #174 #175

Closed bwalkerl closed 2 months ago

bwalkerl commented 2 months ago

PHP 8.2+ deprecation of dynamic properties.

$this->id and $this->name are references to old properties of check that were removed shortly after being added in MDL-67818, so these aren't being called from anywhere else and can be safely removed.

Closes #174