Hello community,
how can stubfiles for IDEs like PhpStorm, etc. generated for Phalcon 2.0? Or, does somebody own such files?
UPDATE: I know that I can generate the files with zephir stubs
now.
But I think that the generator is making mistakes. A short example:
<?php
namespace Phalcon\Mvc;
class Application extends \Phalcon\Di\Injectable
{
protected $_defaultModule;
protected $_modules;
protected $_implicitView = true;
/**
* Phalcon\Mvc\Application
*
* @param Phalcon\DiInterface dependencyInjector <--- HERE is the mistake: Autocomplete is not working correctly. "\Phalcon\DiInterface" would be right.
*
*
* @param mixed $dependencyInjector
*/
public function __construct($dependencyInjector = null) {}
}
Am I right?