Passed
Pull Request — master (#3)
by Artem
02:31
created
src/Database/Territory/Territory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     public function getOfficialLanguages()
61 61
     {
62 62
         if ($this->officialLanguages === null) {
63
-            $this->officialLanguages = array_filter($this->getLanguages(), function ($v) {
63
+            $this->officialLanguages = array_filter($this->getLanguages(), function($v) {
64 64
                 return $v['official'];
65 65
             });
66 66
         }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     public function getUnofficialLanguages()
75 75
     {
76 76
         if ($this->unofficialLanguages === null) {
77
-            $this->officialLanguages = array_filter($this->getLanguages(), function ($v) {
77
+            $this->officialLanguages = array_filter($this->getLanguages(), function($v) {
78 78
                 return !$v['official'];
79 79
             });
80 80
         }
Please login to merge, or discard this patch.