Completed
Branch nyx-refactor-internal-api (db44a3)
by Quentin
05:28
created
src/Synapse/Cmf/Framework/Theme/Template/Loader/LoaderInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
     /**
15 15
      * Retrieve a template from a content type and a template type.
16 16
      *
17
-     * @param TemplateType $theme
18 17
      * @param Content      $content
19 18
      *
20 19
      * @return TemplateInterface|null
Please login to merge, or discard this patch.
src/Synapse/Cmf/Framework/Theme/Variation/Entity/Variation.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@
 block discarded – undo
36 36
      *
37 37
      * @see PropertyAccessorInterface::getValue()
38 38
      *
39
-     * @param sgring $namespace
40
-     * @param string $path
39
+     * @param string $namespace
41 40
      * @param string $element
42 41
      * @param mixed  $default
42
+     * @param string $key
43 43
      *
44 44
      * @return mixed
45 45
      */
Please login to merge, or discard this patch.
src/Synapse/Page/Bundle/Controller/PageAdminController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @param Request $request
50 50
      *
51
-     * @return Response
51
+     * @return \Symfony\Component\HttpFoundation\Response
52 52
      */
53 53
     public function listAction(Request $request)
54 54
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @param Request $request
65 65
      *
66
-     * @return Response
66
+     * @return \Symfony\Component\HttpFoundation\Response
67 67
      */
68 68
     public function createAction(Request $request)
69 69
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param Request $request
103 103
      *
104
-     * @return Response
104
+     * @return \Symfony\Component\HttpFoundation\Response
105 105
      */
106 106
     public function editAction(Page $page, Request $request)
107 107
     {
Please login to merge, or discard this patch.
src/Synapse/Admin/Bundle/Controller/ComponentAdminController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @param int     $id
19 19
      * @param Request $request
20 20
      *
21
-     * @return Response
21
+     * @return RedirectResponse
22 22
      */
23 23
     public function addComponentAction($id, $componentTypeId, Request $request)
24 24
     {
Please login to merge, or discard this patch.
src/Synapse/Admin/Bundle/Controller/SkeletonAdminController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @param Request $request
50 50
      *
51
-     * @return Response
51
+     * @return \Symfony\Component\HttpFoundation\Response
52 52
      */
53 53
     public function listAction(Request $request)
54 54
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @param Request $request
65 65
      *
66
-     * @return Response
66
+     * @return \Symfony\Component\HttpFoundation\Response
67 67
      */
68 68
     public function createAction(Request $request)
69 69
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param Request $request
103 103
      *
104
-     * @return Response
104
+     * @return \Symfony\Component\HttpFoundation\Response
105 105
      */
106 106
     public function editAction(Page $page, Request $request)
107 107
     {
Please login to merge, or discard this patch.
src/Synapse/Cmf/Framework/Theme/Component/Domain/Command/UpdateCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * Initialisation function.
21 21
      *
22
-     * @param ComponentInterface $zone
23 22
      */
24 23
     public function init(ComponentInterface $component = null)
25 24
     {
Please login to merge, or discard this patch.
src/Synapse/Cmf/Framework/Theme/Zone/Domain/DomainInterface.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Create and return a new Zone from given ZoneType and optionnale Component collection.
17 17
      *
18
-     * @param ZoneTypeInterface   $zoneType
19 18
      * @param ComponentCollection $components
20 19
      *
21 20
      * @return ZoneInterface
@@ -25,7 +24,6 @@  discard block
 block discarded – undo
25 24
     /**
26 25
      * Update given Zone component collection.
27 26
      *
28
-     * @param ZoneTypeInterface   $zoneType
29 27
      * @param ComponentCollection $components
30 28
      */
31 29
     public function edit(ZoneInterface $zone, ComponentCollection $components);
Please login to merge, or discard this patch.