Completed
Push — master ( 8c8647...aa5246 )
by James Ekow Abaka
03:00
created
src/Relationship.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     }
61 61
     
62 62
     public function getQuery() {
63
-        if(!$this->query) {
63
+        if (!$this->query) {
64 64
             $this->query = new QueryParameters();
65 65
         }
66 66
         return $this->query;
Please login to merge, or discard this patch.
src/QueryParameters.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -67,11 +67,11 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     public function getWhereClause() {
70
-        if($this->whereClause) {
71
-            foreach($this->boundArrays as $boundArray) {
70
+        if ($this->whereClause) {
71
+            foreach ($this->boundArrays as $boundArray) {
72 72
                 $where = "";
73 73
                 $comma = "";
74
-                for($i = 0; $i < count($this->boundData[$boundArray]); $i++) {
74
+                for ($i = 0; $i < count($this->boundData[$boundArray]); $i++) {
75 75
                     $where .= "{$comma}:{$boundArray}_{$i}";
76 76
                     $comma = ', ';
77 77
                 }
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
     }
83 83
 
84 84
     public function getBoundData() {
85
-        if($this->preparedBoundData === false) {
85
+        if ($this->preparedBoundData === false) {
86 86
             $this->preparedBoundData = [];
87
-            foreach($this->boundData as $key => $value) {
88
-                if(in_array($key, $this->boundArrays)) {
89
-                    foreach($value as $i => $v) {
87
+            foreach ($this->boundData as $key => $value) {
88
+                if (in_array($key, $this->boundArrays)) {
89
+                    foreach ($value as $i => $v) {
90 90
                         $this->preparedBoundData["{$key}_{$i}"] = $v;
91 91
                     }
92 92
                 } else {
@@ -98,10 +98,10 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     public function setBoundData($key, $value) {
101
-        if(isset($this->boundData[$key])){
101
+        if (isset($this->boundData[$key])) {
102 102
             $isArray = is_array($value);
103 103
             $boundArray = in_array($key, $this->boundArrays);
104
-            if($isArray && !$boundArray) {
104
+            if ($isArray && !$boundArray) {
105 105
                 throw new NibiiException("{$key} cannot be bound to an array");
106 106
             } else if (!$isArray && $boundArray) {
107 107
                 throw new NibiiException("{$key} must be bound to an array");
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     }
115 115
 
116 116
     public function getSorts() {
117
-        return count($this->sorts) ? " ORDER BY " . implode(", ", $this->sorts) : null;
117
+        return count($this->sorts) ? " ORDER BY ".implode(", ", $this->sorts) : null;
118 118
     }
119 119
 
120 120
     public function addFilter($field, $values = null) {
Please login to merge, or discard this patch.
src/relationships/HasManyRelationship.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         // @todo throw an exception when the data doesn't have the local key
45 45
         $query = $this->getQuery();
46
-        if($this->queryPrepared) {
46
+        if ($this->queryPrepared) {
47 47
             $query->setBoundData($this->options['foreign_key'], $data[$this->options['local_key']]);
48 48
         } else {
49 49
             $query->setTable($this->getModelInstance()->getDBStoreInformation()['quoted_table'])
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function runSetup()
57 57
     {
58
-        if($this->options['foreign_key'] == null) {
59
-            $this->options['foreign_key'] = Text::singularize($this->setupTable) . '_id';
58
+        if ($this->options['foreign_key'] == null) {
59
+            $this->options['foreign_key'] = Text::singularize($this->setupTable).'_id';
60 60
         }
61
-        if($this->options['local_key'] == null) {
61
+        if ($this->options['local_key'] == null) {
62 62
             $this->options['local_key'] = $this->setupPrimaryKey[0];
63 63
         }
64 64
     }
Please login to merge, or discard this patch.
src/relationships/ManyHaveManyRelationship.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $filter = $junctionModel->fields($this->options['junction_foreign_key'])
45 45
             ->filterBy($this->options['junction_local_key'], $data[$this->options['local_key']])
46 46
             ->fetch();
47
-        if($filter->count() == 0) {
47
+        if ($filter->count() == 0) {
48 48
             return null;
49 49
         }
50 50
         $foreignKeys = [];
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
         // @todo throw an exception when the data doesn't have the local key
56 56
         $query = $this->getQuery();
57
-        if($this->queryPrepared){
57
+        if ($this->queryPrepared) {
58 58
             $query->setBoundData($this->options['foreign_key'], $foreignKeys);
59 59
         } else {
60 60
             $query = $this->getQuery()
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
 
89 89
         if (!isset($this->options['junction_local_key'])) {
90 90
             $this->options['junction_local_key'] = 
91
-                Text::singularize($this->setupTable) . '_id';
91
+                Text::singularize($this->setupTable).'_id';
92 92
         }
93 93
 
94 94
         if (!isset($this->options['junction_foreign_key'])) {
95 95
             $this->options['junction_foreign_key'] = 
96
-                Text::singularize($foreignModel->getDBStoreInformation()['table']) . '_id';
96
+                Text::singularize($foreignModel->getDBStoreInformation()['table']).'_id';
97 97
         }
98 98
     }
99 99
 
Please login to merge, or discard this patch.
src/relationships/BelongsToRelationship.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public function prepareQuery($data) {
42 42
         // @todo throw an exception when the data doesn't have the local key
43 43
         $query = $this->getQuery();
44
-        if($this->queryPrepared){
44
+        if ($this->queryPrepared) {
45 45
             $query->setBoundData($this->options['foreign_key'], $data[$this->options['local_key']]);
46 46
         } else {
47 47
             $query->setTable($this->getModelInstance()->getDBStoreInformation()['quoted_table'])
Please login to merge, or discard this patch.