Completed
Push — master ( 58bfba...076691 )
by Joschi
03:02
created
src/Object/Domain/Model/Properties/Relations.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     /**
109 109
      * Unserialize and add a relation
110 110
      *
111
-     * @param string|RelationInterface $relation Serialized or instantiated object relation
111
+     * @param string|null $relation Serialized or instantiated object relation
112 112
      * @param string|null $relationType Relation type
113 113
      * @return Relations Self reference
114 114
      * @throws InvalidArgumentException If the relation is not a valid relation instance
Please login to merge, or discard this patch.
src/Object/Application/Model/Properties/Datatype/Url.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * Match a value against this datatype
52 52
      *
53
-     * @param mixed $value Value
53
+     * @param string $value Value
54 54
      * @return mixed Matched and processed value
55 55
      * @throws DomainException If the value is not a valid URL
56 56
      */
Please login to merge, or discard this patch.
src/Object/Application/Model/Properties/Datatype/Geo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@
 block discarded – undo
50 50
     /**
51 51
      * Match a value against this datatype
52 52
      *
53
-     * @param mixed $value Value
54
-     * @return mixed Matched and processed value
53
+     * @param string $value Value
54
+     * @return \Apparat\Object\Domain\Model\Uri\Url Matched and processed value
55 55
      * @throws DomainException If the value is not a valid Geo URI
56 56
      */
57 57
     public function match($value)
Please login to merge, or discard this patch.
src/Object/Application/Model/Properties/Datatype/ApparatUrl.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@
 block discarded – undo
50 50
     /**
51 51
      * Match a value against this datatype
52 52
      *
53
-     * @param mixed $value Value
54
-     * @return mixed Matched and processed value
53
+     * @param string $value Value
54
+     * @return \Apparat\Object\Domain\Model\Uri\ApparatUrl Matched and processed value
55 55
      * @throws DomainException If the value is not a valid URL
56 56
      */
57 57
     public function match($value)
Please login to merge, or discard this patch.
src/Object/Infrastructure/Repository/FileAdapterStrategy.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      * Find and return an object resource
283 283
      *
284 284
      * @param string $resourcePath Repository relative resource locator
285
-     * @return ResourceInterface|AbstractResource Object resource
285
+     * @return AbstractResource Object resource
286 286
      */
287 287
     public function getObjectResource($resourcePath)
288 288
     {
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
      * Delete all revisions of an object
379 379
      *
380 380
      * @param ObjectInterface $object Object
381
-     * @return ObjectInterface Object
381
+     * @return FileAdapterStrategy Object
382 382
      */
383 383
     protected function deleteObject(ObjectInterface $object)
384 384
     {
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
      * Undelete all revisions of an object
450 450
      *
451 451
      * @param ObjectInterface $object Object
452
-     * @return ObjectInterface Object
452
+     * @return FileAdapterStrategy Object
453 453
      */
454 454
     protected function undeleteObject(ObjectInterface $object)
455 455
     {
Please login to merge, or discard this patch.