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

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;
}
}
}