NetBeans PHP benim işlevleri için belgelerine eklemek nasıl?

0 Cevap php

Ben aşağıdaki çalıştı,

/*
 * addRelationship
 *
 * Adds a relationship between two entities using the given relation type.
 *
 * @param fromKey the original entity
 * @param toKey the referring entity
 * @param relationTypeDesc the type of relationship
 */

function addRelationship($fromKey, $toKey, $relationTypeDesc) {
    $relationTypeKey = $this->getRelationTypeKey($relationTypeDesc);

Ben başka bir yerde kullanmaya çalıştım Ama, PHPDoc bulunamadı diyor.

alt text

Any Ideas on how to get this to work in NetBeans PHP?

UPDATE :

Aşağıdaki NetBeans PHP çalışacak güncellenen sözdizimi -

/** 
 * addRelationship
 *
 * Adds a relationship between two entities using the given relation type.
 *
 * @param integer $fromKey the original entity
 * @param integet $toKey the referring entity
 * @param string $relationTypeDesc the type of relationship
 */

function addRelationship($fromKey, $toKey, $relationTypeDesc) {

0 Cevap