Passed
Push — master ( 3896ee...e50616 )
by Raffael
05:45
created
src/lib/Endpoint/Moodle/ApiClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Set options.
71 71
      *
72
-     * @param iterable $config
72
+     * @param iterable|null $config
73 73
      */
74 74
     public function setOptions(?Iterable $config): ApiClient
75 75
     {
Please login to merge, or discard this patch.
src/lib/Resource/Factory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -139,6 +139,7 @@
 block discarded – undo
139 139
 
140 140
     /**
141 141
      * Get all.
142
+     * @param Closure $build
142 143
      */
143 144
     public function getAllFrom(Collection $collection, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null, ?Closure $build = null): Generator
144 145
     {
Please login to merge, or discard this patch.
src/lib/AttributeMap.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -296,6 +296,7 @@
 block discarded – undo
296 296
 
297 297
     /**
298 298
      * Process ruleset.
299
+     * @return string
299 300
      */
300 301
     protected function rewrite($value, array $ruleset)
301 302
     {
Please login to merge, or discard this patch.
src/lib/Endpoint/Ucs.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -409,6 +409,7 @@
 block discarded – undo
409 409
 
410 410
     /**
411 411
      * Get identifier.
412
+     * @return string
412 413
      */
413 414
     protected function getResourceId(array $object, array $endpoint_object = []): ?string
414 415
     {
Please login to merge, or discard this patch.
src/lib/DataObject/Factory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -185,6 +185,9 @@
 block discarded – undo
185 185
 
186 186
     /**
187 187
      * Change stream.
188
+     * @param boolean $offset
189
+     * @param integer $limit
190
+     * @param integer $sort
188 191
      */
189 192
     public function watch(CollectionInterface $collection, ?ObjectIdInterface $after = null, bool $existing = true, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
190 193
     {
Please login to merge, or discard this patch.
src/lib/DataObjectRelation/Factory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -133,6 +133,8 @@  discard block
 block discarded – undo
133 133
 
134 134
     /**
135 135
      * {@inheritdoc}
136
+     * @param integer $offset
137
+     * @param integer $limit
136 138
      */
137 139
     public function getAll(ResourceNamespaceInterface $namespace, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
138 140
     {
@@ -266,6 +268,7 @@  discard block
 block discarded – undo
266 268
 
267 269
     /**
268 270
      * Build.
271
+     * @param DataObjectInterface $object
269 272
      */
270 273
     public function build(array $resource, ?DataObjectInterface $object = null): DataObjectRelationInterface
271 274
     {
Please login to merge, or discard this patch.
src/lib/Job/Factory.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -180,6 +180,8 @@
 block discarded – undo
180 180
 
181 181
     /**
182 182
      * Change stream.
183
+     * @param integer $offset
184
+     * @param integer $limit
183 185
      */
184 186
     public function watch(ResourceNamespaceInterface $namespace, ?ObjectIdInterface $after = null, bool $existing = true, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
185 187
     {
Please login to merge, or discard this patch.
src/lib/Log/Factory.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -52,6 +52,8 @@
 block discarded – undo
52 52
 
53 53
     /**
54 54
      * watch all.
55
+     * @param integer $offset
56
+     * @param integer $limit
55 57
      */
56 58
     public function watch(?ObjectIdInterface $after = null, bool $existing = true, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
57 59
     {
Please login to merge, or discard this patch.
src/lib/Process/Factory.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -180,6 +180,8 @@
 block discarded – undo
180 180
 
181 181
     /**
182 182
      * Change stream.
183
+     * @param integer $offset
184
+     * @param integer $limit
183 185
      */
184 186
     public function watch(ResourceNamespaceInterface $namespace, ?ObjectIdInterface $after = null, bool $existing = true, ?array $query = null, ?int $offset = null, ?int $limit = null, ?array $sort = null): Generator
185 187
     {
Please login to merge, or discard this patch.