Completed
Push — master ( 6bf792...7f3705 )
by Nelson
03:04
created
src/IntString.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 class IntString extends Object implements IEquatable, IComparable
33 33
 {
34 34
     /**
35
-     * @param integer|null $intValue    Integer part. Default: ``0`` (zero).
35
+     * @param integer $intValue    Integer part. Default: ``0`` (zero).
36 36
      * @param string|null  $stringValue String part. Default: ``''`` (empty).
37 37
      */
38 38
     public function __construct($intValue = 0, $stringValue = '')
Please login to merge, or discard this patch.
src/IStrictPropertiesContainer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@
 block discarded – undo
43 43
      *
44 44
      * @param string $name  Property name.
45 45
      * @param mixed  $value Property value.
46
+     * @return void
46 47
      */
47 48
     public function __set($name, $value);
48 49
 }
Please login to merge, or discard this patch.
src/Type.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,6 +177,9 @@  discard block
 block discarded – undo
177 177
         return $this->methods;
178 178
     }
179 179
 
180
+    /**
181
+     * @param string $name
182
+     */
180 183
     public function hasMethod($name)
181 184
     {
182 185
         if ($this->reflectionObject !== null) {
@@ -189,7 +192,6 @@  discard block
 block discarded – undo
189 192
     /**
190 193
      * Determines if instances of this Type can be converted to string.
191 194
      *
192
-     * @param mixed $obj Object.
193 195
      *
194 196
      * @return bool
195 197
      */
Please login to merge, or discard this patch.