Last active
August 29, 2015 14:05
-
-
Save spolischook/e4125658cb1c0c6761aa to your computer and use it in GitHub Desktop.
Annotation mapping class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Kotoblog\Annotation; | |
| use Doctrine\Common\Annotations\Annotation; | |
| /** @Annotation | |
| * @Target("PROPERTY") | |
| */ | |
| final class Mapping | |
| { | |
| public $relatedClass; | |
| public $type; | |
| public $default; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment