@@ -29,6 +29,7 @@ public function __construct()
29
29
* Return all years available.
30
30
*
31
31
* @param string $sort
32
+ *
32
33
* @return mixed
33
34
*/
34
35
public function getAllYears ($ sort = 'asc ' )
@@ -42,6 +43,7 @@ public function getAllYears($sort = 'asc')
42
43
* @param int $minYear
43
44
* @param int $maxYear
44
45
* @param string $sort
46
+ *
45
47
* @return mixed
46
48
*/
47
49
public function getYearsRange (int $ minYear , int $ maxYear , $ sort = 'asc ' )
@@ -53,6 +55,7 @@ public function getYearsRange(int $minYear, int $maxYear, $sort = 'asc')
53
55
* Return all makes available.
54
56
*
55
57
* @param string $sort
58
+ *
56
59
* @return mixed
57
60
*/
58
61
public function getAllMakes ($ sort = 'asc ' )
@@ -65,6 +68,7 @@ public function getAllMakes($sort = 'asc')
65
68
*
66
69
* @param int $year
67
70
* @param string $sort
71
+ *
68
72
* @return mixed
69
73
*/
70
74
public function getMakesByYear (int $ year , $ sort = 'asc ' )
@@ -78,6 +82,7 @@ public function getMakesByYear(int $year, $sort = 'asc')
78
82
* @param int $minYear
79
83
* @param int $maxYear
80
84
* @param string $sort
85
+ *
81
86
* @return mixed
82
87
*/
83
88
public function getMakesByYearsRange (int $ minYear , int $ maxYear , $ sort = 'asc ' )
@@ -90,6 +95,7 @@ public function getMakesByYearsRange(int $minYear, int $maxYear, $sort = 'asc')
90
95
*
91
96
* @param string $make
92
97
* @param string $sort
98
+ *
93
99
* @return mixed
94
100
*/
95
101
public function getAllModelsByMake (string $ make , $ sort = 'asc ' )
@@ -103,6 +109,7 @@ public function getAllModelsByMake(string $make, $sort = 'asc')
103
109
* @param int $year
104
110
* @param string $make
105
111
* @param string $sort
112
+ *
106
113
* @return mixed
107
114
*/
108
115
public function getModelsByYearAndMake (int $ year , string $ make , $ sort = 'asc ' )
@@ -116,6 +123,7 @@ public function getModelsByYearAndMake(int $year, string $make, $sort = 'asc')
116
123
* @param int $year
117
124
* @param string $make
118
125
* @param string $model
126
+ *
119
127
* @return mixed
120
128
*/
121
129
public function getTrimsByYearMakeAndModel (int $ year , string $ make , string $ model )
@@ -130,6 +138,7 @@ public function getTrimsByYearMakeAndModel(int $year, string $make, string $mode
130
138
* @param string $make
131
139
* @param string $model
132
140
* @param string $trim
141
+ *
133
142
* @return mixed
134
143
*/
135
144
public function getTransmissionsByYearMakeModelAndTrim (int $ year , string $ make , string $ model , string $ trim )
@@ -145,6 +154,7 @@ public function getTransmissionsByYearMakeModelAndTrim(int $year, string $make,
145
154
* @param string $model
146
155
* @param string $trim
147
156
* @param string $transmission
157
+ *
148
158
* @return mixed
149
159
*/
150
160
public function getEnginesByYearMakeModelTrimAndTransmission (int $ year , string $ make , string $ model , string $ trim , string $ transmission )
@@ -156,6 +166,7 @@ public function getEnginesByYearMakeModelTrimAndTransmission(int $year, string $
156
166
* Return the logo for the make supplied.
157
167
*
158
168
* @param string $make
169
+ *
159
170
* @return mixed
160
171
*/
161
172
public function getMakeLogo (string $ make )
0 commit comments