Completed
Branch master (5ded47)
by Casey
07:15
created
src/WosObjectMetadata.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * Return representation of the metadata as it would appear as a x-ddn-metadata value
63 63
      *
64
-     * @return mixed
64
+     * @return string
65 65
      */
66 66
     public function __toString()
67 67
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     /**
98 98
      * Returns data length in BYTES if known, NULL otherwise
99 99
      *
100
-     * @return int|null
100
+     * @return integer
101 101
      */
102 102
     public function getObjectSize()
103 103
     {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      * Whether a offset exists
109 109
      *
110 110
      * @link   http://php.net/manual/en/arrayaccess.offsetexists.php
111
-     * @param  mixed $offset <p>
111
+     * @param  string $offset <p>
112 112
      *                      An offset to check for.
113 113
      *                      </p>
114 114
      * @return boolean true on success or false on failure.
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * Offset to retrieve
127 127
      *
128 128
      * @link   http://php.net/manual/en/arrayaccess.offsetget.php
129
-     * @param  mixed $offset <p>
129
+     * @param  string $offset <p>
130 130
      *                      The offset to retrieve.
131 131
      *                      </p>
132 132
      * @return mixed Can return all value types.
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 
17 17
 namespace WosClient;
18 18
 
19
-use Countable;
20 19
 use Psr\Http\Message\ResponseInterface;
21 20
 use Traversable;
22 21
 use WosClient\Helper\ArrayToMetadataStringTrait;
Please login to merge, or discard this patch.