Test Failed
Push — master ( 3feb07...e3c021 )
by Dan
10:26
created
src/SixtyNine/Cloud/Command/CommandsHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * @param string $paletteName
90 90
      * @param string $paletteType
91 91
      * @param string $palettesFile
92
-     * @return bool|ColorGeneratorInterface
92
+     * @return ColorGeneratorInterface
93 93
      * @throws \InvalidArgumentException
94 94
      */
95 95
     public function getColorGenerator($paletteName, $paletteType, $palettesFile = null)
Please login to merge, or discard this patch.
src/SixtyNine/Cloud/Model/Box.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         return new self($this->getX() + $deltaX, $this->getY() + $deltaY, $this->getWidth(), $this->getHeight());
90 90
     }
91 91
 
92
+    /**
93
+     * @param integer $count
94
+     */
92 95
     public function resize($count)
93 96
     {
94 97
         return new self(
Please login to merge, or discard this patch.
src/SixtyNine/Cloud/Usher/QuadTreeMask.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -11,6 +11,10 @@
 block discarded – undo
11 11
     /** @var QuadTree */
12 12
     protected $tree;
13 13
 
14
+    /**
15
+     * @param integer $width
16
+     * @param integer $height
17
+     */
14 18
     function __construct($width, $height)
15 19
     {
16 20
         $this->tree = new QuadTree(new Box(0, 0, $width, $height));
Please login to merge, or discard this patch.
src/SixtyNine/Cloud/Usher/Usher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      * Search a free place for a new box.
74 74
      * @param \SixtyNine\Cloud\Model\Box $bounds
75 75
      * @param \SixtyNine\Cloud\Model\Box $box
76
-     * @return bool|Box
76
+     * @return Box
77 77
      */
78 78
     protected function searchPlace(Box $bounds, Box $box)
79 79
     {
Please login to merge, or discard this patch.