move certificate classes to their own namespace

remotes/origin/fix-10825
Robin Appelman 11 years ago
parent f135130a75
commit ba8416a04f
  1. 4
      lib/private/certificate/certificate.php
  2. 2
      lib/private/certificate/certificatemanager.php
  3. 1
      lib/private/server.php

@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace OC;
namespace OC\Certificate;
use OCP\ICertificate;
@ -75,7 +75,7 @@ class Certificate implements ICertificate {
* @return string
*/
public function getSerial() {
return $this->getSerial();
return $this->serial;
}
/**

@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace OC;
namespace OC\Certificate;
use OCP\ICertificateManager;

@ -6,6 +6,7 @@ use OC\AppFramework\Http\Request;
use OC\AppFramework\Db\Db;
use OC\AppFramework\Utility\SimpleContainer;
use OC\Cache\UserCache;
use OC\Certificate\CertificateManager;
use OC\DB\ConnectionWrapper;
use OC\Files\Node\Root;
use OC\Files\View;

Loading…
Cancel
Save