Test Setup Failed
Push — test ( 81a026...1aa8b2 )
by Jonathan
05:29
created
src/Object/BasicObject.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@  discard block
 block discarded – undo
55 55
         return true;
56 56
     }
57 57
 
58
+    /**
59
+     * @param integer $pos
60
+     */
58 61
     public function replaceRepresentation(Representation $rep, $pos = null)
59 62
     {
60 63
         if (null === $pos) {
@@ -74,6 +77,9 @@  discard block
 block discarded – undo
74 77
         }
75 78
     }
76 79
 
80
+    /**
81
+     * @param string $name
82
+     */
77 83
     public function getRepresentation($name)
78 84
     {
79 85
         if (isset($this->representations[$name])) {
Please login to merge, or discard this patch.
src/Object/Representation/ColorRepresentation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@
 block discarded – undo
85 85
         $this->setValues($value);
86 86
     }
87 87
 
88
+    /**
89
+     * @param integer $variant
90
+     */
88 91
     public function hasAlpha($variant = null)
89 92
     {
90 93
         if (null === $variant) {
Please login to merge, or discard this patch.
src/Renderer/PlainRenderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
         return "<a {$class}href=\"{$ideLink}\">{$shortenedPath}:{$line}</a>";
148 148
     }
149 149
 
150
+    /**
151
+     * @param string $string
152
+     */
150 153
     public function escape($string, $encoding = false)
151 154
     {
152 155
         if (false === $encoding) {
Please login to merge, or discard this patch.