ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
example_cleaned.php
Go to the documentation of this file.
1
<?php
2
// PSR-2
3
namespace
Vendor\Package
;
4
5
use BarClass as
Bar
;
6
use
FooInterface
;
7
use
OtherVendor\OtherPackage\BazClass
;
8
use
ZPackage
;
9
10
class
Foo
extends
Bar
implements
FooInterface
11
{
12
public
function
sampleMethod
(
$a
,
$b
= null)
13
{
14
if
(
$a
===
$b
) {
15
\Vendor\Package\bar
();
16
} elseif (
$a
>
$b
) {
17
$foo
->bar($arg1);
18
}
else
{
19
BazClass::bar
($arg2, $arg3);
20
}
21
}
22
23
final
public
static
function
bar
()
24
{
25
// method body
26
}
27
}
28
30
// cast_spaces
31
$a
= 0;
$b
= 0;
$c
= 0;
$d
= 0;
$e
= 0 ;
$f
= 0;
32
$bar
= (string)
$a
;
33
$foo
= (int)
$b
;
34
// concat_space
35
$foo
=
'bar'
. 3 .
'baz'
.
'qux'
;
36
// binary_operator_spaces
37
$a
= 1 +
$b
^
$d
!==
$e
or
$f
;
38
// unary_operator_spaces
39
$sample
= 0;
40
$sample
++;
41
//Unused blank lines: begin
42
43
//Unused blank lines: end
44
--
$sample
;
45
$sample
= !!
$a
;
46
$sample
= ~
$c
;
47
function
&
foo
()
48
{
49
}
50
// function_typehint_space
51
function
sample
(array
$a
)
52
{
53
}
54
// return_type_declaration
55
function
bar
(
int
$a
) : string
56
{
57
};
58
// whitespace_after_comma_in_array
59
$sample
= array(1,
'a'
,
$b
,);
Vendor\Package\foo
& foo()
Definition:
example_cleaned.php:47
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
Bar
Vendor\Package\sample
sample(array $a)
Definition:
example_cleaned.php:51
Vendor\Package\$bar
$bar
Definition:
example_cleaned.php:32
Vendor\Package\$d
$d
Definition:
example_cleaned.php:31
Vendor\Package\Foo\bar
static bar()
Definition:
example_cleaned.php:23
Vendor\Package\$f
$f
Definition:
example_cleaned.php:31
Vendor\Package\$foo
$foo
Definition:
example_cleaned.php:33
Vendor\Package\$sample
$sample
Definition:
example_cleaned.php:39
Vendor\Package
Definition:
example_cleaned.php:3
Vendor\Package\$b
$b
Definition:
example_cleaned.php:31
ZPackage
FooInterface
Vendor\Package\Foo\sampleMethod
sampleMethod($a, $b=null)
Definition:
example_cleaned.php:12
Vendor\Package\$a
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Definition:
example_cleaned.php:31
Vendor\Package\$c
$c
Definition:
example_cleaned.php:31
BazClass
Vendor\Package\bar
bar(int $a)
Definition:
example_cleaned.php:55
Vendor\Package\Foo
Definition:
example_cleaned.php:10
CI
PHP-CS-Fixer
example
example_cleaned.php
Generated on Thu Apr 3 2025 20:00:45 for ILIAS by
1.8.13 (using
Doxyfile
)