Completed
Push — develop ( 037ef6...a650ad )
by Carsten
06:58
created
module/Settings/src/Settings/Entity/SettingsContainer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param bool  $recursive
28
-     * @param array $skipMembers
28
+     * @param string[] $skipMembers
29 29
      *
30 30
      * @return $this
31 31
      */
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-     * @param $property
133
+     * @param string $property
134 134
      *
135 135
      * @return null
136 136
      */
Please login to merge, or discard this patch.
Organizations/src/Organizations/Repository/Filter/PaginationQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      * @see \Core\Repository\Filter\AbstractPaginationQuery::createQuery()
52 52
      * @param $params
53 53
      * @param \Doctrine\ODM\MongoDB\Query\Builder $queryBuilder
54
-     * @return mixed
54
+     * @return \Doctrine\ODM\MongoDB\Query\Builder
55 55
      */
56 56
     public function createQuery($params, $queryBuilder)
57 57
     {
Please login to merge, or discard this patch.
module/Applications/src/Applications/Entity/ApplicationInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
     /**
239 239
      * Gets all comments for the application.
240 240
      *
241
-     * @return ArrayCollection;
241
+     * @return Collection
242 242
 
243 243
      */
244 244
     public function getComments();
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/EntityTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
  */
23 23
 trait EntityTrait
24 24
 {
25
+    /**
26
+     * @param string $property
27
+     */
25 28
     public function notEmpty($property, array $args=[])
26 29
     {
27 30
         $method = "get$property";
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormContainer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@
 block discarded – undo
73 73
 
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $layout
78
+     */
76 79
     public function renderElement($element, $layout, $parameter)
77 80
     {
78 81
         $parameterPartial = $parameter;
Please login to merge, or discard this patch.
module/Orders/src/Entity/OrderInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,6 @@
 block discarded – undo
79 79
     /**
80 80
      * Sets the invoice address.
81 81
      *
82
-     * @param InvoiceAddressInterface $invoice
83 82
      *
84 83
      * @return self
85 84
      */
Please login to merge, or discard this patch.
module/Orders/src/Factory/Form/JobInvoiceAddressFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param ServiceLocatorInterface $serviceLocator
38 38
      *
39
-     * @return mixed
39
+     * @return InvoiceAddress
40 40
      */
41 41
     public function createService(ServiceLocatorInterface $serviceLocator)
42 42
     {
Please login to merge, or discard this patch.
src/Applications/Factory/Listener/EventApplicationCreatedFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @param ServiceLocatorInterface $serviceLocator
29 29
      *
30
-     * @return mixed
30
+     * @return EventApplicationCreated
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
33 33
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Container.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /**
99 99
      * Gets an iterator to iterate over the enabled formulars.
100 100
      *
101
-     * @return \ArrayIterator
101
+     * @return PriorityList
102 102
      * @see IteratorAggregate::getIterator()
103 103
      */
104 104
     public function getIterator()
Please login to merge, or discard this patch.