1
0
mirror of synced 2025-01-18 22:41:43 +03:00

15 lines
238 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Common\Annotations;
class Annotation
{
public $value;
public final function __construct(array $data)
{
foreach ($data as $key => $value) {
$this->$key = $value;
}
}
}