TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
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
+
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
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
▼
TYPO3 CMS
TYPO3 CMS
Test List
Todo List
Deprecated List
►
Namespace Members
►
Classes
▼
Files
►
File List
►
File Members
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
ParameterReflection.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Extbase\Reflection
;
3
19
class
ParameterReflection
extends
\ReflectionParameter {
20
27
public
function
__construct
($function, $parameterName) {
28
parent::__construct($function, $parameterName);
29
}
30
36
public
function
getDeclaringClass
() {
37
return
new \TYPO3\CMS\Extbase\Reflection\ClassReflection(parent::getDeclaringClass()->getName());
38
}
39
45
public
function
getClass
() {
46
try
{
47
$class = parent::getClass();
48
}
catch
(\
Exception
$e) {
49
return
NULL;
50
}
51
return
is_object($class) ? new \TYPO3\CMS\Extbase\Reflection\ClassReflection($class->getName()) : NULL;
52
}
53
}
TYPO3\CMS\Extbase\Reflection\ParameterReflection\getDeclaringClass
getDeclaringClass()
Definition:
ParameterReflection.php:36
TYPO3\CMS\Extbase\Reflection\Exception
Definition:
Exception.php:19
TYPO3\CMS\Extbase\Reflection\ParameterReflection\getClass
getClass()
Definition:
ParameterReflection.php:45
TYPO3\CMS\Extbase\Reflection\ParameterReflection
Definition:
ParameterReflection.php:19
TYPO3\CMS\Extbase\Reflection\ParameterReflection\__construct
__construct($function, $parameterName)
Definition:
ParameterReflection.php:27
TYPO3\CMS\Extbase\Reflection
Definition:
ClassReflection.php:2
typo3
sysext
extbase
Classes
Reflection
ParameterReflection.php
Generated on Wed Aug 7 2019 09:52:25 for TYPO3 CMS by
1.8.13