Passed
Push — master ( 65e631...545eb8 )
by Roma
03:28
created
src/Polarcy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,10 +88,10 @@
 block discarded – undo
88 88
      */
89 89
     private function calculateAveragePoint()
90 90
     {
91
-        $xSum = array_sum(array_map(function (Point $point) {
91
+        $xSum = array_sum(array_map(function(Point $point) {
92 92
             return $point->x();
93 93
         }, $this->pointsCollection->all()));
94
-        $ySum = array_sum(array_map(function (Point $point) {
94
+        $ySum = array_sum(array_map(function(Point $point) {
95 95
             return $point->y();
96 96
         }, $this->pointsCollection->all()));
97 97
 
Please login to merge, or discard this patch.