Completed
Push — master ( faed70...56c59d )
by Philip
13:07
created
Controller/AbstractRestResourceController.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -237,11 +237,17 @@  discard block
 block discarded – undo
237 237
         return $entity;
238 238
     }
239 239
 
240
+    /**
241
+     * @return string
242
+     */
240 243
     protected function getEntityClass()
241 244
     {
242 245
         return $this->getCurrentRequest()->attributes->get('_entityClass');
243 246
     }
244 247
 
248
+    /**
249
+     * @param string $subresource
250
+     */
245 251
     protected function getSubResourceEntityClass($subresource)
246 252
     {
247 253
         /** @var PropertyMetadata $propertyMetadata */
@@ -291,6 +297,9 @@  discard block
 block discarded – undo
291 297
         return $classMetaData;
292 298
     }
293 299
 
300
+    /**
301
+     * @param string $propertyPath
302
+     */
294 303
     protected function resolveSubject($entity, $propertyPath)
295 304
     {
296 305
         if ('this' === $propertyPath) {
@@ -333,6 +342,9 @@  discard block
 block discarded – undo
333 342
         return array_merge($defaultIncludes, $includes);
334 343
     }
335 344
 
345
+    /**
346
+     * @param string[] $attributes
347
+     */
336 348
     protected function denyAccessUnlessGranted($attributes, $object = null, $message = 'Access Denied.')
337 349
     {
338 350
         $authorizationChecker = $this->getAuthorizationChecker();
Please login to merge, or discard this patch.