0

PHPDocumenter は、私のページ レベルの docblock がファイルに存在しないと私に言い続けます。これを機能させるためにオンラインでドキュメントのいくつかのページを読みましたが、それでも機能しません。

<?php
namespace Activis\Catalog\Model;

/**
* This file represents the factory for the domain object Product for the Activis catalog.
* 
* For now, this factory is simple and abstract but will slowly change into a non-static set of factory functions
* The domain model for this object is \Activis\Catalog\Model\Product
*
* @category Domain model factory
* @package  Activis.Catalog.Model
* @author   Mathieu Dumoulin
* @license  LGPL v3
* @link     http://activis.ca/
* @todo     Change the methods in the factory to not be abstract and require an instance of this class
*/
/**
* Declares the catalog's product's domain model factory
* 
* @abstract
* @static
*/
abstract class ProductFactory
{
}
4

1 に答える 1

2

ページ レベルの docblock は、名前空間宣言の前に、ファイルの上に配置する必要があります

于 2013-02-20T14:38:21.877 に答える