审查视图

simplewind/vendor/mindplay/annotations/test/suite/Sample/OrphanedAnnotations.php 335 字节
lihan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<?php

namespace mindplay\test\Sample;

class OrphanedAnnotations
{

    /**
     * Some method.
     *
     * @return void
     */
    public function someMethod()
    {
        $a = 5;

        // @codeCoverageIgnoreStart
        if (false) {
            $a = 6;
        }
        // @codeCoverageIgnoreEnd

        $a = 5;
    }

}