phpdocumentor is Documentation Generator for PHP written in PHP.

learn more… | top users | synonyms

8
votes
2answers
178 views

How to write code block using phpDocumentor, tutorials/extended documentation?

How to write code blocks using phpDocumentor while writing tutorials/extended documentation? I have tried <programlisting>, it can generate the <code> tag , but it does not parse its ...
-1
votes
0answers
26 views

PHP DOCUMENTOR SUPRESSING WARNINGS [closed]

I am using php documentor 2. I have some phtml files which have no doc block. I am getting this error No page-level DocBlock was found in filename.phtml I don't want these errors to get ...
0
votes
1answer
17 views

Installing phpdocumentor on Uniserver

When I use the PEAR web interface provided by Uniserver 8.8.1 to install phpdocumentor, I get the usual "Downloading..." and then the download finished message. Then, nothing happens. What do I need ...
0
votes
0answers
15 views

phpDocumentor parsing only files which have been updated

I am using phpDocumentor to generate Docs for selected libs, and doc are added to svn( good or bad ?). Each time I run phpdoc command it parses all files and updates all Doc files and only adds ...
1
vote
1answer
29 views

What does “no short description for property” from phpDoc mean?

I'm getting this critical error when running phpDoc on a class file of mine: No short description for property $id. This is the relevant code: /** @type int The user's id. */ private $id = 0; I ...
1
vote
1answer
62 views

PHPDOC Examples Without Line Numbers

According to PHPDocumentor's documentation, to show an example it would be like this: @example [location] [<start-line> [<number-of-lines>] ] [<description>] This seems like a ...
0
votes
0answers
13 views

Accessing custom variables in a template from a phpdoc 2.0 configuration XML file

In phpdoc 2.0, is it possible to add additional custom tags to the phpdoc.xml file in order to make the values they contain available to the template's .xsl files? For example, the xml config file can ...
0
votes
0answers
18 views

phpdoc not parsing constant description

I've been trying to document my configuration file, following the phpdocumentor documention I started with a simplified config file which looks like this: /** * Configuration / Settings file * * ...
0
votes
0answers
17 views

use netbeans phpdocumentor array

use netbeans code assist..... $file_list = array(); /** * this is db host */ $file_list['db_host'] = 'localhost'; /** * this is db id */ $file_list['db_id'] = 'root'; $file_list[] -"netbeans ...
0
votes
1answer
36 views

How do I change the path to php in phpDocumentor?

I have at least two (probably three) installations of PHP on my machine. phpDocumentor seems to insist upon using /usr/local/bin/php, while I would prefer it to use /usr/local/php5/bin/php. I haven't ...
0
votes
0answers
67 views

PhpDocumentor2 output in HTML

One big question HOW to generate output in HTML using PhpDocumentor2. Bcs it generates AST with .xml file but when i try to type command with: -o HTML:frames:earthli I get [RunTimeException] that ...
0
votes
0answers
79 views

phpdocumentor 2 with zend phtml files not working

I have a zend project where I want to use phpDocumentor 2 for documentation. My problem are the phtml files. 1.) I got the error of "No page-level DocBlock was found" although I added it at the ...
0
votes
1answer
84 views

Where should I install phpDocumentor 2?

I want to manually install phpDocumentor 2 on Unix using the installer. I have limited knowledge of the command line, but I do have root access. The instructions say to download the installer to the ...
0
votes
1answer
33 views

phpundercontrol doesn't find any tests

PhpUndercontrol doesn't finde any test, inside my projects (inside cruisecontrol/projects) I have this: /www/tests/DomainTEst/DomainTest.php (for instance I want to run for now only one test) ...
1
vote
1answer
91 views

phpDocumentor 2.0 Page-level DocBlock - Where is it?

I have a set of classes, each class is in its own file. I've added appropriate DocBlocks so that I get no errors or warnings when I build the documentation. Here is a very simplified example: ...
0
votes
0answers
79 views

PHPDoc 2 comments: file & namespace

it is possible that the files section (using file level doc block) was removed in V2? I am happy about it because I prefer single classes in each file and only need the class docblock. I was just ...
0
votes
0answers
27 views

Is there any phpDocumentor 2 printable output?

Is there any quick way to output printable documentation using phpDocumentor 2? Option -o doesn't work...
1
vote
0answers
63 views

PHPDoc Create/Modified Date/Timestamp

What (if any) tag can be used to specify a create and/or last modified date for PHPDocumentor? For example: @created 2013-01-01 @author John Doe @updated 2013-01-06 This is primarily for ...
1
vote
1answer
77 views

Phpdocumentor and Slim routers documentation

I use phpdocumentor for generating of documentation for my project. It generates good documentation for my functions like: /** * Hash generator * * Long description * ...
0
votes
1answer
97 views

PHPDoc on OSX via PEAR

I'm running OS 10.8.2 (Mountain Lion). I did a fresh install of PEAR just as this blog states: http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/ So I set include_path in ...
1
vote
1answer
45 views

How do i ignore specific files in phpDocumentor

I am documenting a program i built in PHP with phpDocumentor. Everything is working perfect, but the documentation shows me i have close to 100 errors because it is reading a file that i use to upload ...
2
votes
1answer
54 views

Documenting constants with PHP documentor [duplicate]

Possible Duplicate: phpDoc class constants documentation I have defined several constants in my project configuration file. The constants are all well commented within the file, but ...
3
votes
1answer
33 views

phpDocumentor tab delimiter

Pretty simple one: is it ok to use tabs inside phpDocumentor tags? Like: /** * @param string @some_var Description */ There's a tab between @some_var and Description Didn't find ...
0
votes
1answer
55 views

phpdoc web interface: Undefined offset: 1 in <PHPDOCDIR>\src\phpDocumentor\Console\Input\ArgvInput.php

I've installed phpdoc using the installer.php file, and when I open phpdoc.php from wamp (localhost/phpDocumentor/bin/phpdoc.php) I get this error: Notice: Undefined offset: 1 in ...
0
votes
2answers
538 views

php.ini - command line PHP and WAMP server access different files

I don't know if this is default behavior or not, but it seems weird to me. I installed WAMP server v2.2e from scratch, with PHP 5.4.3, on a windows 7 machine. I get these minor bugs that i don't ...
0
votes
1answer
130 views

PHPDoc wiki template

I recently upgraded to phpdoc 2 and want to create a solution for outputting my api to wiki markup, instead of html or pdf. In /usr/share/php5/data/PhpDocumentor/Converters, I see the CHM, HTML, PDF, ...
0
votes
0answers
202 views

Custom templates with phpDocumentor 2

I've been trying to get a custom template to work with PHPDocumentor (2) without much luck. The documentation on their site is incomplete and I'm kind of stumped. What I've done is downloaded a copy ...
2
votes
1answer
119 views

Optional argument in phpDoc @method signature

Is there a way to mark argument in @method signature as optional in phpDoc? Something like this: /* * @method bool alloc() alloc(int $filesize [, string &$result]) Allocates space for a file to ...
0
votes
1answer
24 views

Generating document for a huge PHP file

I have a huge PHP File ( approx 2 MB). As its a third party file so can't change it. Now I want to generate documentation for it using automatic documentation generators. I tried Doxygen, Apigen and ...
1
vote
1answer
36 views

phpDocumentor page-level docstrings

We have a page-level docblock like the following: /** * Functions for the processing, displaying, and searching of listings * * @package ListingFunctions * */ The rest of the file has functions ...
0
votes
1answer
280 views

Netbeans 7.2.1 + XAMPP

I develop primarily remotely using NetBeans 7.2.1. I'm beginning to see that NetBeans can use a local php interpreter for more than just running the code locally. I stumbled across loads of ...
1
vote
1answer
272 views

phpDocumentor2: XSLT not found

if i call the phpDocumentor to generate a documentation all works fine until the XSLT-Transformation begins. Then i get following message: [phpDocumentor\Plugin\Core\Exception] The XSL writer was ...
0
votes
2answers
54 views

phpDocumentor - How to document a different author updating code, and a date?

Let's say original documentation for a class looks like this: /** * My custom class * * This class helps you do stuff. It's really great. * * @author David Smith * @version 1.0 */ If I ...
0
votes
1answer
47 views

PHPDOC2 OUTPUT NOT PRODUCE

After installed the phpdoc. I have run the phpdoc run -h it gave the output. But when run the phpdoc run -d . -t ouput not produce any output.Any changes need to do please suggest me. Thanks ...
0
votes
1answer
87 views

Is there a documentor available for HTML/CSS?

Like PHPDocumentor is to PHP and Doxygen is to JAVA, C++, C#, Fortran, etc.,
1
vote
2answers
408 views

How to use phpDocumentor for CodeIgniter

I've built quite an extensive web application and I was looking through the style guide for CodeIgniter (CI) to see how to do comments. It has things like this for classes and methods: /** * Super ...
0
votes
0answers
35 views

Files in PhpDocumentor

PhpDocumentor creates the following documentation: "Namespaces", "Packages", "Charts" and "Reports". How do I set it up to also display a list of my files?
2
votes
2answers
442 views

PHPDocumentor, Netbeans & GraphViz

I configured my phpdpc.bat as the following in netbeans: C:\xampp\php\phpdoc.bat --sourcecode -o HTML:Smarty:default I've found the information that I can build some how graphviz grafics with ...
0
votes
1answer
270 views

phing with phpdoc2 doesn't run

So I have a jenkins job to update a copy of my code and generate the phpdoc for my library, this is all done with phing When I use these line in de build.xml it generates jsut fine (but with ...
2
votes
1answer
62 views

The best way to securely share the documentation for my PHP web app? [closed]

I'm using PHPDocumentor to generate the documentation for my web application. This is working well and I am pleased with the results so far. However I need to make this documentation available from ...
0
votes
1answer
98 views

Commenting if statements for phpdocumentor2

I am in the process of documenting a PHP project using PHPDocumentor2. Ironically, PHPDoc's documentation isn't overly detailed. I fully understand how to comment files, classes, functions and ...
0
votes
0answers
142 views

PHPDocumentor: cannot open php.doc in a Zend setup

myI have been trying to install phpDocumentor on a Windows vista system, but keep getting the message "could not open input file: \phpdoc.php" when I enter phpdoc.bat or 'phpdoc' command in the ...
0
votes
0answers
51 views

phpDocumenter and abstract methods

I'm using phpDocumentor phpDocumentor version 2.0.0a10` and have several abstract classes that I am documenting. The documentation seems to include those abstract classes but not methods that ...
0
votes
2answers
446 views

phpDocumentor - “Is phpdoc in either the path or include_path in your php.ini file?”

I'm trying to run phpDocumentor and am getting this error... I've searched extensively on Google and cannot find a solution that works, unfortunately I couldn't install via PEAR so I've had to ...
1
vote
1answer
111 views

Proper way to denote array data type for phpDocumentor?

Which of the following is the proper way to document the return type of this method for phpDocumentor? Method 1: /** * @return array Foo array. */ public function foo() { return array(1, 2, ...
1
vote
1answer
209 views

Can you automatically put a method's code into its DockBlock in phpDocumentor 2?

I've installed phpDocumentor 2 and want to include the source for each method in the generated documentation. However, I notice that the inline @source tag does not appear to be picked up, and there ...
1
vote
1answer
162 views

What PHP Documentation Notation does symfony use?

I use the word Notation because fabien potencier has its own generator but i can't find what notation (or syntax if you will) it uses for the comments. ...
0
votes
1answer
50 views

PHPDocumentor broken links

The links in the responsive phpdocumentor template seem to be broken. For example the url to the packages contains 'db_Models' packages/db_Models/ When removing db_Models from the URL it work fine. ...
4
votes
1answer
490 views

PHP Documentor --output option

I have installed PHP Documentor through PEAR. but output option is not working. when i use simple command like phpdoc -d source/path -t target/path --template responsive it works fine. but when ...
2
votes
5answers
2k views

Can't set/find detect_unicode to Off

I'm want to start using phpDocumentor and the manual installation keeps throwing an error about me not having set detect_unicode = Off in my php.ini in Terminal. When I add it to my php.ini it ...

1 2 3