1
0
mirror of synced 2025-01-07 09:37:11 +03:00
doctrine2/lib/Doctrine/Common/Annotations/Annotation.php

15 lines
238 B
PHP

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