Style fixes

This commit is contained in:
Bart Visscher 2013-08-25 22:34:54 +02:00
parent ca88cf93ae
commit 2f79e94a35
1 changed files with 25 additions and 21 deletions

View File

@ -42,8 +42,14 @@ use \OC\DB\Connection;
* database.
*/
class AppConfig {
/**
* @var \OC\DB\Connection $conn
*/
protected $conn;
/**
* @param \OC\DB\Connection $conn
*/
public function __construct(Connection $conn) {
$this->conn = $conn;
}
@ -213,5 +219,3 @@ class AppConfig {
return $values;
}
}
require_once __DIR__.'/legacy/'.basename(__FILE__);