zendframework / ZFTool

Utility module for maintaining modular Zend Framework 2 applications.
187 stars 102 forks source link

'create action' command fails on `static::VALUE` #105

Open ma-si opened 9 years ago

ma-si commented 9 years ago

starting from static::VALUE to end of method all is removed

$this->setParams(array(
            'type' => static::TYPE,
            'someValue' => $someValue,
        ));
        return $viewModel;

become

$this->setParams(array(
            'type' => 

and adding unnecessary double tab indent

    public function someMethod()
    {
        first line
                other lines
        last line
    }