-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathMethodArgumentsUnitTest.inc
103 lines (93 loc) · 2.12 KB
/
MethodArgumentsUnitTest.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* This is the summary for a DocBlock.
*
* This is the description for a DocBlock. This text may contain
* multiple lines and even some _markdown_.
* * Markdown style lists function too
* * Just try this out once
* The section after the description contains the tags; which provide
* structured meta-data concerning the given element.
*
* @param int $example This is an example function/method parameter description.
* @param string $example2 This is a second example.
*
*/
public function getProductListDefaultSortBy2($example, $example2)
{
return $example === $example2;
}
public function setExtensionAs(\Magento\Catalog\Api\Data\CategoryExtensionInterface $extensionAttributes)
{
return $this->_setExtensionAttributes($extensionAttributes);
}
/**
* Short description of method
*
* @param int
* @return int
*/
public function invalidDocBlockShouldNotCauseFatalErrorInSniff(int $number): int
{
return $number;
}
/**
* Short description.
*
* @param string $text
* @return string
*/
#[\ReturnTypeWillChange]
public function methodWithAttributeAndValidDocblockWithTypes(string $text): string
{
return $text;
}
/**
* Short description.
*
* @param string $text
* @return string
*/
#[\ReturnTypeWillChange]
public function methodWithAttributeAndValidDocblockWithoutTypes()
{
return $text;
}
#[\ReturnTypeWillChange]
public function methodWithAttributeAndWithoutDocblockWithTypes(string $text): string
{
return $text;
}
#[\ReturnTypeWillChange]
public function methodWithAttributeAndWithoutDocblockWithoutTypes($text)
{
return $text;
}
public function methodWithoutDockblockWithParameterTypeWithoutReturnType(string $text)
{
return $text;
}
public function methodWithoutDockblockWithoutParameterTypeWithReturnType($text) : string
{
return $text;
}
/**
* Short description.
*
* @param string $text
* @return string
*/
public function methodWithDockblockWithParameterTypeWithoutReturnType(string $text)
{
return $text;
}
/**
* Short description.
*
* @param mixed $text
* @return string
*/
public function methodWithDockblockWithoutParameterTypeWithReturnType($text) : string
{
return $text;
}