Subversion Repositories Applications.framework

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<?php
2
define('OK', 1);
3
 
4
class No_Comment
5
{
6
 
7
}//end class
8
 
9
 
10
//
11
// Sample class comment
12
//
13
//
14
//
15
class Invalid_Comment_Style1
16
{
17
 
18
}//end class
19
 
20
 
21
/**
22
 *
23
 *
24
 * Sample class comment
25
 *
26
 *
27
 * Long description with extra blank line before and after
28
 *
29
 *
30
 * @category  PHP
31
 * @package   PHP_CodeSniffer
32
 * @author    Greg Sherwood <gsherwood@squiz.net>
33
 * @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
34
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
35
 * @version   Release: 1.0
36
 * @link      http://pear.php.net/package/PHP_CodeSniffer
37
 */
38
class Extra_Description_Newlines
39
{
40
 
41
}//end class
42
 
43
 
44
/**
45
 * Sample class comment
46
 * @category  PHP
47
 * @package   PHP_CodeSniffer
48
 * @author    Greg Sherwood <gsherwood@squiz.net>
49
 * @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
50
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
51
 * @version
52
 * @link      http://pear.php.net/package/PHP_CodeSniffer
53
 */
54
class Missing_Newlines_Before_Tags
55
{
56
 
57
}//end class
58
 
59
 
60
/**
61
 * Simple class comment
62
 *
63
 * @category   _wrong_category
64
 * @package    PHP_CodeSniffer
65
 * @package    ADDITIONAL PACKAGE TAG
66
 * @subpackage SUBPACKAGE TAG
67
 * @author     Original Author <author@example.com>
68
 * @author       Rayn Ong rong@squiz.net
69
 * @author
70
 * @copyright  1997~1994 The PHP Group
71
 * @license    http://www.php.net/license/3_0.txt
72
 * @version    INVALID VERSION CONTENT
73
 * @see
74
 * @see
75
 * @link       sdfsdf
76
 * @see        Net_Sample::Net_Sample()
77
 * @see        Net_Other
78
 * @deprecated asd
79
 * @unknown    Unknown tag
80
 * @since      Class available since Release 1.2.0
81
 */
82
class Checking_Tags
83
{
84
    class Sub_Class {
85
 
86
    }//end class
87
 
88
 
89
}//end class
90
 
91
 
92
/**
93
 *
94
 *
95
 */
96
class Empty_Class_Doc
97
{
98
 
99
}//end class
100
 
101
 
102
/**
103
 *
104
 *
105
 */
106
interface Empty_Interface_Doc
107
{
108
 
109
}//end interface
110
?>