[lang-ref] ( init_emptyray ) ( php )
<?php
public function testInitEmptyray(): void
{
// $items = []
$items = [];
$this->assertIsArray($items);
$this->assertSame(0, count($items));
}
<?php
public function testInitEmptyray(): void
{
// $items = []
$items = [];
$this->assertIsArray($items);
$this->assertSame(0, count($items));
}