Completed
Push — master ( 827038...ef4825 )
by Joschi
03:24
created
src/Object/Application/Repository/AbstractAdapterStrategy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      * Adapter strategy constructor
68 68
      *
69 69
      * @param array $config Adapter strategy configuration
70
-     * @param array $signatureConfigKeys Signature relevant configuration properties
70
+     * @param string[] $signatureConfigKeys Signature relevant configuration properties
71 71
      */
72 72
     public function __construct(array $config, array $signatureConfigKeys)
73 73
     {
Please login to merge, or discard this patch.
src/Object/Domain/Model/Path/LocalPath.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
     /**
243 243
      * Return the object ID
244 244
      *
245
-     * @return Id Object ID
245
+     * @return integer Object ID
246 246
      */
247 247
     public function getId()
248 248
     {
Please login to merge, or discard this patch.
src/Object/Domain/Model/Path/ObjectUrl.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * Set the object's creation date
103 103
      *
104 104
      * @param \DateTimeImmutable $creationDate
105
-     * @return LocalPath New object path
105
+     * @return ObjectUrl New object path
106 106
      */
107 107
     public function setCreationDate(\DateTimeImmutable $creationDate)
108 108
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * Return the object ID
137 137
      *
138
-     * @return Id Object ID
138
+     * @return integer Object ID
139 139
      */
140 140
     public function getId()
141 141
     {
Please login to merge, or discard this patch.
src/Object/Infrastructure/Repository/FileAdapterStrategy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
      * Find and return an object resource
186 186
      *
187 187
      * @param string $resourcePath Repository relative resource path
188
-     * @return ResourceInterface Object resource
188
+     * @return \Apparat\Resource\Domain\Model\Resource\AbstractResource Object resource
189 189
      */
190 190
     public function getObjectResource($resourcePath)
191 191
     {
Please login to merge, or discard this patch.
src/Object/Domain/Model/Path/RepositoryPath.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * Repository path constructor
58 58
      *
59 59
      * @param RepositoryInterface $repository Object repository this path applies to
60
-     * @param string|PathInterface $path Object path
60
+     * @param string $path Object path
61 61
      */
62 62
     public function __construct(RepositoryInterface $repository, $path)
63 63
     {
Please login to merge, or discard this patch.
src/Object/Domain/Repository/Selector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,8 +112,8 @@
 block discarded – undo
112 112
      * Repository selector constructor
113 113
      *
114 114
      * @param string|int|NULL $year
115
-     * @param string|int|NULL $month
116
-     * @param string|int|NULL $day
115
+     * @param integer $month
116
+     * @param integer $day
117 117
      * @param string|int|NULL $hour
118 118
      * @param string|int|NULL $minute
119 119
      * @param string|int|NULL $second
Please login to merge, or discard this patch.