1234567891011121314151617181920212223242526 |
- <?php
- namespace mindplay\test\Sample;
- class OrphanedAnnotations
- {
- /**
- * Some method.
- *
- * @return void
- */
- public function someMethod()
- {
- $a = 5;
- // @codeCoverageIgnoreStart
- if (false) {
- $a = 6;
- }
- // @codeCoverageIgnoreEnd
- $a = 5;
- }
- }
|