Здравствуйте. Нахожусь в поиске лучшей ide for php. Сегодня поставил phpstorm. Нашел плюсы, нашел минусы. Например автокомплит.
Он работает не так как в Netbeans или Zend. Это был сюрприз, но один и тот же класс в одном файле проекта подсказывается, а в другом — нет. Файл с классом проинедксирован. После того как наберешь ClassName::, ide подскажит методы класса. Т.е. ide знает о нем.
Уважаемые пользоваетели phpStorm, подскажите пожалуйста, как решить этот вопрос.
/**
* Skeleton subclass for performing query and update operations on the 'block_img' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package propel.generator.pash
*/
class BlockImgPeer extends BaseBlockImgPeer {
} // BlockImgPeer
/**
* Base static class for performing query and update operations on the 'block_img' table.
*
*
*
* @package propel.generator.pash.om
*/
abstract class BaseBlockImgPeer {
… тут константы и методы, стандартные для Propel…
}
При наборе в контроллере BlockImg, Выдает подсказку только на BaseBlockImgPeer
Вот его код
/**
* This class defines the structure of the 'block_img' table.
*
*
*
* This map class is used by Propel to do runtime db structure discovery.
* For example, the createSelectSql() method checks the type of a given column used in an
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type).
*
* @package propel.generator.pash.map
*/
class BlockImgTableMap extends TableMap {
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'pash.map.BlockImgTableMap';
/**
* Initialize the table attributes, columns and validators
* Relations are not initialized by this method since they are lazy loaded
*
* @return void
* @throws PropelException
*/
public function initialize()
{
// attributes
$this->setName('block_img');
$this->setPhpName('BlockImg');
$this->setClassname('BlockImg');
$this->setPackage('pash');
$this->setUseIdGenerator(true);
// columns
$this->addPrimaryKey('ID', 'Id', 'INTEGER', true, 11, null);
$this->addColumn('BLOCK_DESCRIPT', 'BlockDescript', 'VARCHAR', true, 255, '');
$this->addColumn('FILE_NAME', 'FileName', 'VARCHAR', false, 255, null);
$this->addColumn('ALT_TEXT', 'AltText', 'VARCHAR', true, 255, '');
$this->addColumn('CLASS_TEXT', 'ClassText', 'VARCHAR', true, 255, '');
$this->addColumn('STYLE_TEXT', 'StyleText', 'LONGVARCHAR', true, null, null);
$this->addColumn('TITLE_TEXT', 'TitleText', 'VARCHAR', true, 255, '');
$this->addColumn('WIDTH', 'Width', 'INTEGER', true, 11, 0);
$this->addColumn('HEIGHT', 'Height', 'INTEGER', true, 11, 0);
$this->addColumn('VERSION', 'Version', 'INTEGER', false, 11, 0);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
} // buildRelations()