summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-08-07 22:22:33 +0200
committerBart Visscher <bartv@thisnet.nl>2013-08-07 22:22:33 +0200
commitd563367b0f0bc6a419b8bf61b85aa701231bcad0 (patch)
tree040731166acc03a19b10734ec68ab24d26940f63 /lib
parent83988a5906443164ba9b092664d893519b2b85e6 (diff)
downloadnextcloud-server-d563367b0f0bc6a419b8bf61b85aa701231bcad0.tar.gz
nextcloud-server-d563367b0f0bc6a419b8bf61b85aa701231bcad0.zip
More style fixes
Diffstat (limited to 'lib')
-rw-r--r--lib/db.php18
-rw-r--r--lib/db/connection.php12
2 files changed, 15 insertions, 15 deletions
diff --git a/lib/db.php b/lib/db.php
index d004d491efb..ebd012c72f8 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -73,7 +73,7 @@ class OC_DB {
}
// do nothing if the connection already has been established
- if(!self::$connection) {
+ if (!self::$connection) {
$config = new \Doctrine\DBAL\Configuration();
switch($type) {
case 'sqlite':
@@ -140,7 +140,7 @@ class OC_DB {
return false;
}
$connectionParams['wrapperClass'] = 'OC\DB\Connection';
- $connectionParams['table_prefix'] = OC_Config::getValue( "dbtableprefix", "oc_" );
+ $connectionParams['tablePrefix'] = OC_Config::getValue('dbtableprefix', 'oc_' );
try {
self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config);
if ($type === 'sqlite' || $type === 'sqlite3') {
@@ -201,12 +201,12 @@ class OC_DB {
// return the result
try {
- $result=self::$connection->prepare($query, $limit, $offset);
- } catch(\Doctrine\DBAL\DBALException $e) {
+ $result = self::$connection->prepare($query, $limit, $offset);
+ } catch (\Doctrine\DBAL\DBALException $e) {
throw new \DatabaseException($e->getMessage(), $query);
}
// differentiate between query and manipulation
- $result=new OC_DB_StatementWrapper($result, $isManipulation);
+ $result = new OC_DB_StatementWrapper($result, $isManipulation);
return $result;
}
@@ -218,19 +218,19 @@ class OC_DB {
* @return bool
*/
static public function isManipulation( $sql ) {
- $selectOccurrence = stripos ($sql, "SELECT");
+ $selectOccurrence = stripos($sql, 'SELECT');
if ($selectOccurrence !== false && $selectOccurrence < 10) {
return false;
}
- $insertOccurrence = stripos ($sql, "INSERT");
+ $insertOccurrence = stripos($sql, 'INSERT');
if ($insertOccurrence !== false && $insertOccurrence < 10) {
return true;
}
- $updateOccurrence = stripos ($sql, "UPDATE");
+ $updateOccurrence = stripos($sql, 'UPDATE');
if ($updateOccurrence !== false && $updateOccurrence < 10) {
return true;
}
- $deleteOccurrence = stripos ($sql, "DELETE");
+ $deleteOccurrence = stripos($sql, 'DELETE');
if ($deleteOccurrence !== false && $deleteOccurrence < 10) {
return true;
}
diff --git a/lib/db/connection.php b/lib/db/connection.php
index e8905d041f0..2581969dbd0 100644
--- a/lib/db/connection.php
+++ b/lib/db/connection.php
@@ -14,9 +14,9 @@ use Doctrine\Common\EventManager;
class Connection extends \Doctrine\DBAL\Connection {
/**
- * @var string $table_prefix
+ * @var string $tablePrefix
*/
- protected $table_prefix;
+ protected $tablePrefix;
/**
* @var \OC\DB\Adapter $adapter
@@ -45,12 +45,12 @@ class Connection extends \Doctrine\DBAL\Connection {
if (!isset($params['adapter'])) {
throw new \Exception('adapter not set');
}
- if (!isset($params['table_prefix'])) {
- throw new \Exception('table_prefix not set');
+ if (!isset($params['tablePrefix'])) {
+ throw new \Exception('tablePrefix not set');
}
parent::__construct($params, $driver, $config, $eventManager);
$this->adapter = new $params['adapter']($this);
- $this->table_prefix = $params['table_prefix'];
+ $this->tablePrefix = $params['tablePrefix'];
}
/**
@@ -183,7 +183,7 @@ class Connection extends \Doctrine\DBAL\Connection {
* @return string
*/
protected function replaceTablePrefix($statement) {
- return str_replace( '*PREFIX*', $this->table_prefix, $statement );
+ return str_replace( '*PREFIX*', $this->tablePrefix, $statement );
}
public function enableQueryStatementCaching() {