| 1 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Utility file to locate phpDocumentor for a non-PEAR installation
|
|
|
4 |
*
|
|
|
5 |
* phpDocumentor :: automatic documentation generator
|
|
|
6 |
*
|
|
|
7 |
* PHP versions 4 and 5
|
|
|
8 |
*
|
|
|
9 |
* Copyright (c) 2002-2007 Gregory Beaver
|
|
|
10 |
*
|
|
|
11 |
* LICENSE:
|
|
|
12 |
*
|
|
|
13 |
* This library is free software; you can redistribute it
|
|
|
14 |
* and/or modify it under the terms of the GNU Lesser General
|
|
|
15 |
* Public License as published by the Free Software Foundation;
|
|
|
16 |
* either version 2.1 of the License, or (at your option) any
|
|
|
17 |
* later version.
|
|
|
18 |
*
|
|
|
19 |
* This library is distributed in the hope that it will be useful,
|
|
|
20 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
21 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
22 |
* Lesser General Public License for more details.
|
|
|
23 |
*
|
|
|
24 |
* You should have received a copy of the GNU Lesser General Public
|
|
|
25 |
* License along with this library; if not, write to the Free Software
|
|
|
26 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
27 |
*
|
|
|
28 |
* @category ToolsAndUtilities
|
|
|
29 |
* @package phpDocumentor
|
|
|
30 |
* @subpackage setup
|
|
|
31 |
* @author Gregory Beaver <cellog@php.net>
|
|
|
32 |
* @copyright 2002-2007 Gregory Beaver
|
|
|
33 |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
34 |
* @version CVS: $Id: find_phpdoc.php 246330 2007-11-17 03:09:41Z ashnazg $
|
|
|
35 |
* @filesource
|
|
|
36 |
* @link http://www.phpdoc.org
|
|
|
37 |
* @link http://pear.php.net/PhpDocumentor
|
|
|
38 |
* @since 1.2
|
|
|
39 |
* @todo CS cleanup - change package to PhpDocumentor
|
|
|
40 |
* @todo CS cleanup - change subpackage to Setup
|
|
|
41 |
*/
|
|
|
42 |
/**
|
|
|
43 |
* Dummy value
|
|
|
44 |
* @internal CS Exception - logic here necessitates using an unconditional "include"
|
|
|
45 |
*/
|
|
|
46 |
@include '';
|
|
|
47 |
// value used to test whether include worked
|
|
|
48 |
return 6;
|
|
|
49 |
?>
|