Page 1 of 1

FIXED: [15.90b3] Code Explorer glitch with PHP class

Posted: 13 Jun 2023 16:38
by pjj
If a file contains PHP class, e.g.

Code: Select all

<?php
class Vegetable {
    public $edible;
    public $color;

    public function __construct($edible, $color = "green")
    {
        $this->edible = $edible;
        $this->color = $color;
    }
}
this class "escapes" Module set:
code-explorer-php-class.png
code-explorer-php-class.png (3.5 KiB) Viewed 4902 times

Re: [15.90b3] Code Explorer glitch with PHP class

Posted: 14 Jun 2023 12:16
by Rickard Johansson
Fixed in next release. Thanks!