bravesheep/dogmatist

View on GitHub
src/Guesser/Annotations/Value.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bravesheep\Dogmatist\Guesser\Annotations;

use Doctrine\Common\Annotations\Annotation\Required;

/**
 * @Annotation
 * @Target({"PROPERTY", "ANNOTATION"})
 */
class Value implements FieldInterface
{
    /**
     * @var mixed
     * @Required()
     */
    public $value;
}