PHP 8.2.31
Preview: DoctrineArray.php Size: 896 B
//opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineArray.php

<?php declare(strict_types = 1);

namespace PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine;

use PHPStan\PhpDocParser\Ast\Node;
use PHPStan\PhpDocParser\Ast\NodeAttributes;
use function implode;

class DoctrineArray implements Node
{

	use NodeAttributes;

	/** @var list<DoctrineArrayItem> */
	public array $items;

	/**
	 * @param list<DoctrineArrayItem> $items
	 */
	public function __construct(array $items)
	{
		$this->items = $items;
	}

	public function __toString(): string
	{
		$items = implode(', ', $this->items);

		return '{' . $items . '}';
	}

	/**
	 * @param array<string, mixed> $properties
	 */
	public static function __set_state(array $properties): self
	{
		$instance = new self($properties['items']);
		if (isset($properties['attributes'])) {
			foreach ($properties['attributes'] as $key => $value) {
				$instance->setAttribute($key, $value);
			}
		}
		return $instance;
	}

}

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
1.00 KB lrw-r--r-- 2026-01-25 14:56:51
Edit Download
1.17 KB lrw-r--r-- 2026-01-25 14:56:51
Edit Download
896 B lrw-r--r-- 2026-01-25 14:56:51
Edit Download
1.35 KB lrw-r--r-- 2026-01-25 14:56:51
Edit Download
1.02 KB lrw-r--r-- 2026-01-25 14:56:51
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).