Пример #1
0
    public function testVarComment()
    {
        $generated = $this->generator->defVar('testType', 'Test description')->code();
        $expected = <<<'PHP'
/** @var testType Test description */
PHP;
        static::assertEquals($expected, $generated);
    }