Passed
Push — master ( 66acfb...380864 )
by Richard
01:44
created
maphper/datasource/mysqladapter.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 		$this->pdo = $pdo;
9 9
 		//Set to strict mode to detect 'out of range' errors, action at a distance but it needs to be set for all INSERT queries
10 10
 		$this->pdo->query('SET sql_mode = STRICT_ALL_TABLES');
11
-        $this->stmtCache = new StmtCache($pdo);
11
+		$this->stmtCache = new StmtCache($pdo);
12 12
 	}
13 13
 
14 14
 	public function quote($str) {
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 	public function query(\Maphper\Lib\Query $query) {
19 19
 		$stmt = $this->stmtCache->getCachedStmt($query->getSql());
20 20
 		$args = $query->getArgs();
21
-        $stmt->execute($args);
21
+		$stmt->execute($args);
22 22
 
23 23
 		return $stmt;
24 24
 	}
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 		$this->pdo->query('CREATE TABLE IF NOT EXISTS ' . $table . ' (' . $pkField . ')');
45 45
 	}
46 46
 
47
-    private function alterColumns($table, array $primaryKey, $data) {
48
-        foreach ($data as $key => $value) {
47
+	private function alterColumns($table, array $primaryKey, $data) {
48
+		foreach ($data as $key => $value) {
49 49
 			if ($this->isNotSavableType($value, $key, $primaryKey)) continue;
50 50
 
51 51
 			$type = $this->getType($value);
@@ -57,16 +57,16 @@  discard block
 block discarded – undo
57 57
 				$this->pdo->query('ALTER TABLE ' . $table . ' MODIFY ' . $this->quote($key) . ' ' . $type);
58 58
 			}
59 59
 		}
60
-    }
60
+	}
61 61
 
62
-    private function isNotSavableType($value, $key, $primaryKey) {
63
-        return is_array($value) || (is_object($value) && !($value instanceof \DateTime)) ||
64
-                in_array($key, $primaryKey);
65
-    }
62
+	private function isNotSavableType($value, $key, $primaryKey) {
63
+		return is_array($value) || (is_object($value) && !($value instanceof \DateTime)) ||
64
+				in_array($key, $primaryKey);
65
+	}
66 66
 
67 67
 	public function alterDatabase($table, array $primaryKey, $data) {
68 68
 		$this->createTable($table, $primaryKey, $data);
69
-        $this->alterColumns($table, $primaryKey, $data);
69
+		$this->alterColumns($table, $primaryKey, $data);
70 70
 	}
71 71
 
72 72
 	public function lastInsertId() {
Please login to merge, or discard this patch.
Braces   +24 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,10 +24,15 @@  discard block
 block discarded – undo
24 24
 	}
25 25
 
26 26
 	private function getType($val) {
27
-		if ($val instanceof \DateTime) return 'DATETIME';
28
-		else if (is_int($val)) return  'INT(11)';
29
-		else if (is_double($val)) return 'DECIMAL(9,' . strlen($val) - strrpos($val, '.') - 1 . ')';
30
-		else if (is_string($val)) return strlen($val) < 192 ? 'VARCHAR(191)' : 'LONGBLOB';
27
+		if ($val instanceof \DateTime) {
28
+			return 'DATETIME';
29
+		} else if (is_int($val)) {
30
+			return  'INT(11)';
31
+		} else if (is_double($val)) {
32
+			return 'DECIMAL(9,' . strlen($val) - strrpos($val, '.') - 1 . ')';
33
+		} else if (is_string($val)) {
34
+			return strlen($val) < 192 ? 'VARCHAR(191)' : 'LONGBLOB';
35
+		}
31 36
 		return 'VARCHAR(191)';
32 37
 	}
33 38
 
@@ -36,8 +41,11 @@  discard block
 block discarded – undo
36 41
 		$parts = [];
37 42
 		foreach ($primaryKey as $key) {
38 43
 			$pk = $data->$key;
39
-			if ($pk == null) $parts[] = $key . ' INT(11) NOT NULL AUTO_INCREMENT';
40
-			else $parts[] = $key . ' ' . $this->getType($pk) . ' NOT NULL';
44
+			if ($pk == null) {
45
+				$parts[] = $key . ' INT(11) NOT NULL AUTO_INCREMENT';
46
+			} else {
47
+				$parts[] = $key . ' ' . $this->getType($pk) . ' NOT NULL';
48
+			}
41 49
 		}
42 50
 
43 51
 		$pkField = implode(', ', $parts) . ', PRIMARY KEY(' . implode(', ', $primaryKey) . ')';
@@ -46,14 +54,17 @@  discard block
 block discarded – undo
46 54
 
47 55
     private function alterColumns($table, array $primaryKey, $data) {
48 56
         foreach ($data as $key => $value) {
49
-			if ($this->isNotSavableType($value, $key, $primaryKey)) continue;
57
+			if ($this->isNotSavableType($value, $key, $primaryKey)) {
58
+				continue;
59
+			}
50 60
 
51 61
 			$type = $this->getType($value);
52 62
 
53 63
 			try {
54
-				if (!$this->pdo->query('ALTER TABLE ' . $table . ' ADD ' . $this->quote($key) . ' ' . $type)) throw new \Exception('Could not alter table');
55
-			}
56
-			catch (\Exception $e) {
64
+				if (!$this->pdo->query('ALTER TABLE ' . $table . ' ADD ' . $this->quote($key) . ' ' . $type)) {
65
+					throw new \Exception('Could not alter table');
66
+				}
67
+			} catch (\Exception $e) {
57 68
 				$this->pdo->query('ALTER TABLE ' . $table . ' MODIFY ' . $this->quote($key) . ' ' . $type);
58 69
 			}
59 70
 		}
@@ -81,7 +92,9 @@  discard block
 block discarded – undo
81 92
 		$keyName = $this->quote(implode('_', $fields));
82 93
 
83 94
 		$results = $this->pdo->query('SHOW INDEX FROM ' . $this->quote($table) . ' WHERE Key_Name = "' . $keyName . '"');
84
-		if ($results && count($results->fetchAll()) == 0)  $this->pdo->query('CREATE INDEX ' . $keyName . ' ON ' . $this->quote($table) . ' (' . implode(', ', $fields) . ')');
95
+		if ($results && count($results->fetchAll()) == 0) {
96
+			$this->pdo->query('CREATE INDEX ' . $keyName . ' ON ' . $this->quote($table) . ' (' . implode(', ', $fields) . ')');
97
+		}
85 98
 	}
86 99
 
87 100
 	public function optimiseColumns($table) {
Please login to merge, or discard this patch.
maphper/datasource/sqliteadapter.php 3 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 	public function __construct(\PDO $pdo) {
9 9
 		$this->pdo = $pdo;
10
-        $this->stmtCache = new StmtCache($pdo);
10
+		$this->stmtCache = new StmtCache($pdo);
11 11
 	}
12 12
 
13 13
 	public function quote($str) {
@@ -15,19 +15,19 @@  discard block
 block discarded – undo
15 15
 	}
16 16
 
17 17
 	public function query(\Maphper\Lib\Query $query) {
18
-        $stmt = $this->stmtCache->getCachedStmt($query->getSql());
18
+		$stmt = $this->stmtCache->getCachedStmt($query->getSql());
19 19
 		$args = $query->getArgs();
20 20
 
21
-        //Handle SQLite when PDO_ERRMODE is set to SILENT
22
-        if ($stmt === false) throw new \Exception('Invalid query');
21
+		//Handle SQLite when PDO_ERRMODE is set to SILENT
22
+		if ($stmt === false) throw new \Exception('Invalid query');
23 23
 
24
-        $stmt->execute($args);
25
-        if ($stmt->errorCode() !== '00000' && $stmt->errorInfo()[2] == 'database schema has changed') {
24
+		$stmt->execute($args);
25
+		if ($stmt->errorCode() !== '00000' && $stmt->errorInfo()[2] == 'database schema has changed') {
26 26
 			$this->stmtCache->deleteQueryFromCache($query->getSql());
27 27
 			return $this->query($query);
28
-        }
28
+		}
29 29
 
30
-        return $stmt;
30
+		return $stmt;
31 31
 	}
32 32
 	
33 33
 	public function lastInsertId() {
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 		// SQLSTATE[HY000]: General error: 17 database schema has changed
64 64
 		$this->stmtCache->clearCache();
65 65
 
66
-        // Create temp table to create a new structure
66
+		// Create temp table to create a new structure
67 67
 		$affix = '_'.substr(md5($table), 0, 6);
68
-        $tempTable = $table . $affix;
68
+		$tempTable = $table . $affix;
69 69
 		$this->createTable($tempTable, $primaryKey, $data);
70
-        $this->alterColumns($tempTable, $primaryKey, $data);
70
+		$this->alterColumns($tempTable, $primaryKey, $data);
71 71
 		$this->copyTableData($table, $tempTable);
72 72
 
73 73
 		$this->pdo->query('DROP TABLE IF EXISTS ' . $table );
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 
76 76
 	}
77 77
 
78
-    private function copyTableData($tableFrom, $tableTo) {
79
-        try {
78
+	private function copyTableData($tableFrom, $tableTo) {
79
+		try {
80 80
 			if ($this->tableExists($tableFrom)) {
81 81
 				$columns = implode(', ', $this->getColumns($tableFrom));
82 82
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 			// No data to copy
88 88
 			echo $e->getMessage();
89 89
 		}
90
-    }
90
+	}
91 91
 
92 92
 	private function createTable($table, array $primaryKey, $data) {
93 93
 		$parts = [];
@@ -102,20 +102,20 @@  discard block
 block discarded – undo
102 102
 		$this->pdo->query('CREATE TABLE ' . $table . ' (' . $pkField . ')');
103 103
 	}
104 104
 
105
-    private function alterColumns($table, array $primaryKey, $data) {
106
-        foreach ($data as $key => $value) {
105
+	private function alterColumns($table, array $primaryKey, $data) {
106
+		foreach ($data as $key => $value) {
107 107
 			if ($this->isNotSavableType($value, $key, $primaryKey)) continue;
108 108
 
109 109
 			$type = $this->getType($value);
110 110
 		
111 111
 			$this->pdo->query('ALTER TABLE ' . $table . ' ADD ' . $this->quote($key) . ' ' . $type);
112 112
 		}
113
-    }
113
+	}
114 114
 
115
-    private function isNotSavableType($value, $key, $primaryKey) {
116
-        return is_array($value) || (is_object($value) && !($value instanceof \DateTime)) ||
117
-                in_array($key, $primaryKey);
118
-    }
115
+	private function isNotSavableType($value, $key, $primaryKey) {
116
+		return is_array($value) || (is_object($value) && !($value instanceof \DateTime)) ||
117
+				in_array($key, $primaryKey);
118
+	}
119 119
 
120 120
 	public function addIndex($table, array $fields) {
121 121
 		if (empty($fields)) return false;
Please login to merge, or discard this 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
 	}
45 45
 
46 46
 	private function tableExists($name) {
47
-		$result = $this->pdo->query('SELECT name FROM sqlite_master WHERE type="table" and name="'. $name.'"');
47
+		$result = $this->pdo->query('SELECT name FROM sqlite_master WHERE type="table" and name="' . $name . '"');
48 48
 		return count($result->fetchAll()) == 1;
49 49
 	}
50 50
 
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
 		$this->stmtCache->clearCache();
65 65
 
66 66
         // Create temp table to create a new structure
67
-		$affix = '_'.substr(md5($table), 0, 6);
67
+		$affix = '_' . substr(md5($table), 0, 6);
68 68
         $tempTable = $table . $affix;
69 69
 		$this->createTable($tempTable, $primaryKey, $data);
70 70
         $this->alterColumns($tempTable, $primaryKey, $data);
71 71
 		$this->copyTableData($table, $tempTable);
72 72
 
73
-		$this->pdo->query('DROP TABLE IF EXISTS ' . $table );
74
-		$this->pdo->query('ALTER TABLE ' . $tempTable . ' RENAME TO '. $table );
73
+		$this->pdo->query('DROP TABLE IF EXISTS ' . $table);
74
+		$this->pdo->query('ALTER TABLE ' . $tempTable . ' RENAME TO ' . $table);
75 75
 
76 76
 	}
77 77
 
Please login to merge, or discard this patch.
Braces   +32 added lines, -16 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@  discard block
 block discarded – undo
19 19
 		$args = $query->getArgs();
20 20
 
21 21
         //Handle SQLite when PDO_ERRMODE is set to SILENT
22
-        if ($stmt === false) throw new \Exception('Invalid query');
22
+        if ($stmt === false) {
23
+        	throw new \Exception('Invalid query');
24
+        }
23 25
 
24 26
         $stmt->execute($args);
25 27
         if ($stmt->errorCode() !== '00000' && $stmt->errorInfo()[2] == 'database schema has changed') {
@@ -35,12 +37,19 @@  discard block
 block discarded – undo
35 37
 	}
36 38
 	
37 39
 	private function getType($val) {
38
-		if ($val instanceof \DateTime) return 'DATETIME';
39
-		else if (is_int($val)) return  'INTEGER';
40
-		else if (is_double($val)) return 'DECIMAL(9,' . strlen($val) - strrpos($val, '.') - 1 . ')';
41
-		else if (is_string($val) && strlen($val) < 256) return 'VARCHAR(255)';
42
-		else if (is_string($val) && strlen($val) > 256) return 'LONGBLOG';
43
-		else return 'VARCHAR(255)';		
40
+		if ($val instanceof \DateTime) {
41
+			return 'DATETIME';
42
+		} else if (is_int($val)) {
43
+			return  'INTEGER';
44
+		} else if (is_double($val)) {
45
+			return 'DECIMAL(9,' . strlen($val) - strrpos($val, '.') - 1 . ')';
46
+		} else if (is_string($val) && strlen($val) < 256) {
47
+			return 'VARCHAR(255)';
48
+		} else if (is_string($val) && strlen($val) > 256) {
49
+			return 'LONGBLOG';
50
+		} else {
51
+			return 'VARCHAR(255)';
52
+		}
44 53
 	}
45 54
 
46 55
 	private function tableExists($name) {
@@ -82,8 +91,7 @@  discard block
 block discarded – undo
82 91
 
83 92
 				$this->pdo->query('INSERT INTO ' . $this->quote($tableTo) . '(' . $columns . ') SELECT ' . $columns . ' FROM ' . $this->quote($tableFrom));
84 93
 			}
85
-		}
86
-		catch (\PDOException $e) {
94
+		} catch (\PDOException $e) {
87 95
 			// No data to copy
88 96
 			echo $e->getMessage();
89 97
 		}
@@ -93,8 +101,11 @@  discard block
 block discarded – undo
93 101
 		$parts = [];
94 102
 		foreach ($primaryKey as $key) {
95 103
 			$pk = $data->$key;
96
-			if ($pk == null) $parts[] = $key . ' INTEGER'; 
97
-			else $parts[] = $key . ' ' . $this->getType($pk) . ' NOT NULL';					
104
+			if ($pk == null) {
105
+				$parts[] = $key . ' INTEGER';
106
+			} else {
107
+				$parts[] = $key . ' ' . $this->getType($pk) . ' NOT NULL';
108
+			}
98 109
 		}
99 110
 		
100 111
 		$pkField = implode(', ', $parts) . ', PRIMARY KEY(' . implode(', ', $primaryKey) . ')';
@@ -104,7 +115,9 @@  discard block
 block discarded – undo
104 115
 
105 116
     private function alterColumns($table, array $primaryKey, $data) {
106 117
         foreach ($data as $key => $value) {
107
-			if ($this->isNotSavableType($value, $key, $primaryKey)) continue;
118
+			if ($this->isNotSavableType($value, $key, $primaryKey)) {
119
+				continue;
120
+			}
108 121
 
109 122
 			$type = $this->getType($value);
110 123
 		
@@ -118,10 +131,14 @@  discard block
 block discarded – undo
118 131
     }
119 132
 
120 133
 	public function addIndex($table, array $fields) {
121
-		if (empty($fields)) return false;
134
+		if (empty($fields)) {
135
+			return false;
136
+		}
122 137
 		
123 138
 		//SQLite doesn't support ASC/DESC indexes, remove the keywords
124
-		foreach ($fields as &$field) $field = str_ireplace([' desc', ' asc'], '', $field);
139
+		foreach ($fields as &$field) {
140
+			$field = str_ireplace([' desc', ' asc'], '', $field);
141
+		}
125 142
 		sort($fields);
126 143
 		$fields = array_map('strtolower', $fields);
127 144
 		$fields = array_map('trim', $fields);
@@ -130,8 +147,7 @@  discard block
 block discarded – undo
130 147
 		
131 148
 		try {
132 149
 			$this->pdo->query('CREATE INDEX IF NOT EXISTS  ' . $keyName . ' ON ' . $table . ' (' . implode(', ', $fields) . ')');
133
-		}
134
-		catch (\Exception $e) {
150
+		} catch (\Exception $e) {
135 151
 			
136 152
 		}
137 153
 	}
Please login to merge, or discard this patch.