| 1 | <?php |
||
| 18 | class NullPropertyAnnotator implements PropertyAnnotator { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @since 2.0 |
||
| 22 | * |
||
| 23 | * {@inheritDoc} |
||
| 24 | */ |
||
| 25 | public function isAnnotatorFor( DIProperty $property ) { |
||
| 26 | return true; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @since 2.0 |
||
| 31 | * |
||
| 32 | * {@inheritDoc} |
||
| 33 | */ |
||
| 34 | public function addAnnotation( DIProperty $property, SemanticData $semanticData ) {} |
||
| 35 | |||
| 36 | } |
||
| 37 |