Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
class MyClass
3
{
4
    public $var1 = 'value';
5
 
6
 
7
    public $var2 = 'value';
8
 
9
    public $var3 = 'value';
10
 
11
}//end class
12
 
13
 
14
interface MyInterface
15
{
16
 
17
    public $var1 = 'value';
18
 
19
 
20
    public $var2 = 'value';
21
 
22
    protected $var3 = 'value';
23
}//end interface
24
 
25
 
26
class MyClass
27
{
28
 
29
 
30
    public $var1 = 'value';
31
 
32
    private $var2 = 'value';
33
 
34
 
35
    protected $var3 = 'value';
36
 
37
 
38
}//end class
39
 
40
 
41
 
42
class MyClass
43
{
44
    public $var1 = 'value';
45
}//end class
46
 
47
 
48
interface MyInterface
49
{
50
    public $var1 = 'value';
51
    function myFunction();
52
}//end interface
53
 
54
 
55
class MyClass
56
{
57
 
58
    /**
59
     * The actions that this wizard step requires.
60
     *
61
     * @var   array
62
     * @since 4.0.0
63
     */
64
    protected $actions = array();
65
 
66
 
67
    /**
68
     * TRUE if this step should be performed after the asset is created.
69
     *
70
     * @var   boolean
71
     * @since 4.0.0
72
     */
73
    protected $postStep = FALSE;
74
 
75
 
76
}//end class
77
 
78
class MyClass
79
{
80
    /**
81
     * The actions that this wizard step requires.
82
     *
83
     * @var   array
84
     * @since 4.0.0
85
     */
86
    protected $actions = array();
87
 
88
}//end class
89
 
90
class MyClass
91
{
92
 
93
    /**
94
     * The actions that this wizard step requires.
95
     *
96
     * @var   array
97
     * @since 4.0.0
98
     */
99
    protected $actions = array();
100
 
101
    /**
102
     * The actions that this wizard step requires.
103
     *
104
     * @var   array
105
     * @since 4.0.0
106
     */
107
    protected $actions = array();
108
 
109
}//end class
110
?>