ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
example_raw.php
Go to the documentation of this file.
1
<?php
2
19
// PSR-12
20
namespace
Vendor\Package
;
21
22
use
ZPackage
;
23
use
FooInterface
;
24
use BarClass as Bar;
25
use
OtherVendor\OtherPackage\BazClass
;
26
27
class
Foo
extends
Bar implements
FooInterface
28
{
29
public
function
sampleMethod
(
$a
,
$b
= null)
30
{
31
if
(
$a
===
$b
)
32
{
33
bar
();
34
}
35
elseif (
$a
>
$b
)
36
{
37
$foo
->bar($arg1);
38
}
39
else
40
{
41
BazClass::bar
($arg2, $arg3);
42
}
43
}
44
45
final
public
static
function
bar
()
46
{
47
// method body
48
}
49
}
50
52
// cast_spaces
53
$a
= 0;
$b
= 0;
$c
= 0;
$d
=0;
$e
= 0 ;
$f
=0;
54
$bar
= ( string )
$a
;
55
$foo
= (
int
)
$b
;
56
// concat_space
57
$foo
=
'bar'
. 3 .
'baz'
.
'qux'
;
58
// binary_operator_spaces
59
$a
= 1 +
$b
^
$d
!==
$e
or
$f
;
60
// unary_operator_spaces
61
$sample
= 0;
62
$sample
++;
63
//Unused blank lines: begin
64
65
66
67
//Unused blank lines: end
68
--
$sample
;
69
$sample
= ! !
$a
;
70
$sample
= ~ $c;
71
function
&
foo
(){}
72
// function_typehint_space
73
function
sample
(array
$a
)
74
{}
75
// return_type_declaration
76
function
bar
(
int
$a
):
string
{};
77
// whitespace_after_comma_in_array
78
$sample
= array(1,
'a'
,
$b
,);
Vendor\Package\foo
& foo()
Definition:
example_cleaned.php:65
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
Vendor\Package\sample
sample(array $a)
Definition:
example_cleaned.php:69
Vendor\Package\$bar
$bar
Definition:
example_cleaned.php:50
Vendor\Package\$d
$d
Definition:
example_cleaned.php:49
Vendor\Package\Foo\bar
static bar()
Definition:
example_cleaned.php:41
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
Vendor\Package\$foo
$foo
Definition:
example_cleaned.php:51
Vendor\Package\$sample
$sample
Definition:
example_cleaned.php:57
Vendor\Package
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
example_cleaned.php:21
Vendor\Package\$b
$b
Definition:
example_cleaned.php:49
ZPackage
FooInterface
Vendor\Package\Foo\sampleMethod
sampleMethod($a, $b=null)
Definition:
example_raw.php:29
Vendor\Package\$a
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Definition:
example_cleaned.php:49
Vendor\Package\$c
$c
Definition:
example_cleaned.php:49
BazClass
Vendor\Package\bar
bar(int $a)
Definition:
example_cleaned.php:73
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
CI
PHP-CS-Fixer
example
example_raw.php
Generated on Fri Apr 4 2025 22:01:34 for ILIAS by
1.8.13 (using
Doxyfile
)