📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 13:59:19
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
nette
/
utils
/
tests
/
Utils
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/nette/utils/tests/Utils
🔄 Refresh
✏️
Editing: SmartObject.arrayProperty.phpt
Writable
<?php /** * Test: Nette\SmartObject array property. */ declare(strict_types=1); use Tester\Assert; require __DIR__ . '/../bootstrap.php'; /** * @property array $items */ class TestClass { use Nette\SmartObject; private array $items = []; public function &getItems() { return $this->items; } public function setItems(array $value) { $this->items = $value; } } $obj = new TestClass; $obj->items[] = 'test'; Assert::same(['test'], $obj->items);
💾 Save Changes
❌ Cancel