<?php class Foo { private readonly array $fruits; public function __construct() { $this->fruits = ['banana', 'pear', 'apple']; \sort($this->fruits); } } new Foo();
You have javascript disabled. You will not be able to edit any code.