@@ -30,12 +30,12 @@ abstract class AbstractRestfulController extends AbstractController
3030 /**
3131 * @var array
3232 */
33- protected $ contentTypes = array (
34- self ::CONTENT_TYPE_JSON => array (
33+ protected $ contentTypes = [
34+ self ::CONTENT_TYPE_JSON => [
3535 'application/hal+json ' ,
3636 'application/json '
37- )
38- ) ;
37+ ]
38+ ] ;
3939
4040 /**
4141 * Name of request or query parameter containing identifier
@@ -54,7 +54,7 @@ abstract class AbstractRestfulController extends AbstractController
5454 *
5555 * @var array
5656 */
57- protected $ customHttpMethodsMap = array () ;
57+ protected $ customHttpMethodsMap = [] ;
5858
5959 /**
6060 * Set the route match/query parameter name containing the identifier
@@ -88,9 +88,9 @@ public function create($data)
8888 {
8989 $ this ->response ->setStatusCode (405 );
9090
91- return array (
91+ return [
9292 'content ' => 'Method Not Allowed '
93- ) ;
93+ ] ;
9494 }
9595
9696 /**
@@ -103,9 +103,9 @@ public function delete($id)
103103 {
104104 $ this ->response ->setStatusCode (405 );
105105
106- return array (
106+ return [
107107 'content ' => 'Method Not Allowed '
108- ) ;
108+ ] ;
109109 }
110110
111111 /**
@@ -120,9 +120,9 @@ public function deleteList($data)
120120 {
121121 $ this ->response ->setStatusCode (405 );
122122
123- return array (
123+ return [
124124 'content ' => 'Method Not Allowed '
125- ) ;
125+ ] ;
126126 }
127127
128128 /**
@@ -135,9 +135,9 @@ public function get($id)
135135 {
136136 $ this ->response ->setStatusCode (405 );
137137
138- return array (
138+ return [
139139 'content ' => 'Method Not Allowed '
140- ) ;
140+ ] ;
141141 }
142142
143143 /**
@@ -149,9 +149,9 @@ public function getList()
149149 {
150150 $ this ->response ->setStatusCode (405 );
151151
152- return array (
152+ return [
153153 'content ' => 'Method Not Allowed '
154- ) ;
154+ ] ;
155155 }
156156
157157 /**
@@ -167,9 +167,9 @@ public function head($id = null)
167167 {
168168 $ this ->response ->setStatusCode (405 );
169169
170- return array (
170+ return [
171171 'content ' => 'Method Not Allowed '
172- ) ;
172+ ] ;
173173 }
174174
175175 /**
@@ -187,9 +187,9 @@ public function options()
187187 {
188188 $ this ->response ->setStatusCode (405 );
189189
190- return array (
190+ return [
191191 'content ' => 'Method Not Allowed '
192- ) ;
192+ ] ;
193193 }
194194
195195 /**
@@ -206,9 +206,9 @@ public function patch($id, $data)
206206 {
207207 $ this ->response ->setStatusCode (405 );
208208
209- return array (
209+ return [
210210 'content ' => 'Method Not Allowed '
211- ) ;
211+ ] ;
212212 }
213213
214214 /**
@@ -224,9 +224,9 @@ public function replaceList($data)
224224 {
225225 $ this ->response ->setStatusCode (405 );
226226
227- return array (
227+ return [
228228 'content ' => 'Method Not Allowed '
229- ) ;
229+ ] ;
230230 }
231231
232232 /**
@@ -242,9 +242,9 @@ public function patchList($data)
242242 {
243243 $ this ->response ->setStatusCode (405 );
244244
245- return array (
245+ return [
246246 'content ' => 'Method Not Allowed '
247- ) ;
247+ ] ;
248248 }
249249
250250 /**
@@ -258,9 +258,9 @@ public function update($id, $data)
258258 {
259259 $ this ->response ->setStatusCode (405 );
260260
261- return array (
261+ return [
262262 'content ' => 'Method Not Allowed '
263- ) ;
263+ ] ;
264264 }
265265
266266 /**
@@ -272,9 +272,9 @@ public function notFoundAction()
272272 {
273273 $ this ->response ->setStatusCode (404 );
274274
275- return array (
275+ return [
276276 'content ' => 'Page not found '
277- ) ;
277+ ] ;
278278 }
279279
280280 /**
0 commit comments