registration/db/pendingregist.php

18 lines
189 B
PHP

<?php
namespace OCA\Registration\Db;
use \OCP\IDb;
class PendingRegist {
private $db;
public function __construct(IDb $db) {
$this->db = $db;
}
public function find($id) {
}
}