bravesheep/dogmatist

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bravesheep\Dogmatist\Guesser\Annotations;

/**
 * @Annotation()
 * @Target("ANNOTATION")
 */
class Description implements AnnotationInterface
{
    /**
     * @var \Bravesheep\Dogmatist\Guesser\Annotations\Field[]
     */
    public $fields = [];

    /**
     * @var \Bravesheep\Dogmatist\Guesser\Annotations\Constructor
     */
    public $constructor;
}