Skip to content

Commit ba29f4b

Browse files
committed
* phpdoc fix
1 parent cc3a24a commit ba29f4b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Maslosoft/Addendum/Interfaces/IMetaAnnotation.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,29 @@ interface IMetaAnnotation
1212
{
1313
/**
1414
* Set entity name (class name, method name or property name)
15+
* @return void
1516
*/
1617
public function setName($name);
1718

1819
/**
1920
* Set metada class to be accessible for annotation for init etc. methods
2021
* @param Meta $meta
22+
* @return void
2123
*/
2224
public function setMeta(Meta $meta);
2325

2426
/**
2527
* Set annotatins entity, it can be either class, property, or method
2628
* @param IAnnotationEntity $entity
29+
* @return void
2730
*/
2831
public function setEntity(IAnnotationEntity $entity);
2932

3033
/**
3134
* This function should be called after all annotations are initialized.
3235
* Any code that depends on other annotations can be executed here.
3336
* NOTE: This is not ensured to run, its annotations container responsibility to call it.
37+
* @return void
3438
*/
3539
public function afterInit();
3640
}

0 commit comments

Comments
 (0)