Skip to content

Commit

Permalink
Merge pull request doctrine-extensions#1157 from lologhi/typo-require…
Browse files Browse the repository at this point in the history
…d-annotation

Fix typo in @required annotation

closes doctrine-extensions#1143
  • Loading branch information
stof committed Sep 12, 2014
2 parents 421a4a5 + b26ad7f commit fff460d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Gedmo/Mapping/Annotation/Slug.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
final class Slug extends Annotation
{
/** @var array<string> @required */
/** @var array<string> @Required */
public $fields = array();
/** @var boolean */
public $updatable = true;
Expand Down
2 changes: 1 addition & 1 deletion lib/Gedmo/Mapping/Annotation/TranslationEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
final class TranslationEntity extends Annotation
{
/** @var string @required */
/** @var string @Required */
public $class;
}

2 changes: 1 addition & 1 deletion lib/Gedmo/Mapping/Annotation/TreeClosure.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
final class TreeClosure extends Annotation
{
/** @var string @required */
/** @var string @Required */
public $class;
}

0 comments on commit fff460d

Please sign in to comment.