phpdoc

    2熱度

    3回答

    我想更頻繁地記錄我的代碼,現在我正在寫一個類,並希望它被完整記錄。但是,對於一些奇怪的原因,局部變量的文檔(當然,PHPDoc的)不工作.. 我得到這個: /** * A function for question * @param string $theVar The var to put in local var $aVar. */ public function theFunctio

    3熱度

    1回答

    我試圖讓PHPDocumentor在本地XAMPP安裝上運行。 不幸的是,我很難用包管理器來做這件事。 我怎麼知道在哪裏安裝包: 有關包經理首先是一些基本的問題嗎?例如:我使用Composer安裝了PHPDocumentor。我去我的C:\ XAMPP \ htdocs中\,並運行一個命令: composer require "phpdocumentor/phpdocumentor:2.*" 這將

    0熱度

    1回答

    我在XAMPP上運行的項目上使用PHPdocumentor。 我已經跑PHPDoc的,所有的文檔以 C:\xampp\htdocs\project1\documentation 我對此有一個虛擬主機的配置在我的httpd的虛擬主機文件: <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "C:/xampp/htdoc

    1熱度

    2回答

    我正在嘗試用我的正確信息爲我的項目創建一個PHP文檔。 我想創建對象的信息,在類的方法內創建。 不幸的是,PHPdoc無法識別我的函數內部的對象。 的代碼如下: class app_controll { /** * This function starts the application. All the functionality starts here. * @retu

    0熱度

    1回答

    有沒有辦法配置phpdoc,這樣它也會爲所有安裝的供應商應用程序生成文檔composer? 爲什麼?那麼因爲只有一個文檔環境將會非常好,它將爲您的應用程序的當前版本和所有供應商應用程序提供所有文檔。您可以搜索自己的文檔環境,查看應該如何與屬於laravel或Zend的對象或任何您需要的對象進行交談。 我現在phpdoc.xml看起來是這樣的: <?xml version="1.0" encodin

    1熱度

    1回答

    如何將類似符號粘貼到PHPDoc塊中? */ @ 例如爲: /** * Please use these symbol "@" with symbols "*/" as well. */ 無法在documentation找到它。

    6熱度

    3回答

    我: $myarr['DB'] = new DB(); $myarr['config'] = new config(); 我可以以某種方式向PHPStorm知道究竟thouse鍵裏面?現在我只看到提示變量和類屬性,但沒有數組鍵。

    4熱度

    1回答

    我有以下設置:我用PHPUnit嘲弄非抽象類,但不是所有的方法。因此,非模擬方法仍然存在,作爲對模擬中真實方法的調用。 問題是:如何提示這些方法是可用的(當然,有適當的簽名)? 我會詳細說明一下。類的示例: class RealClass { public function callApi(Api $api) {} public function doStuff(Foo $

    2熱度

    1回答

    加載XML結構考慮文件「cars.xml」複雜元素: <?xml version="1.0" encoding="UTF-8"?> <root> <car> <model>Volvo</model> <color>red</color> </car> <car> <model>BMW</model> <color>bl

    3熱度

    1回答

    看看這個代碼示例: class basetype { public function method() { return false; } } class extendtype extends basetype { public function methodb() { return true; } } class aa