Completed
Push — antivirus-update ( b6d85d...fcda38 )
by Victor
06:44
created

ItemMapper::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * Copyright (c) 2015 Victor Dubiniuk <[email protected]>
4
 * This file is licensed under the Affero General Public License version 3 or
5
 * later.
6
 * See the COPYING-README file.
7
 */
8
9
namespace OCA\Files_Antivirus\Db;
10
11
use OCP\IDb;
12
use OCP\AppFramework\Db\Mapper;
13
14
use OCA\Files_Antivirus\Db\Item;
15
16
class ItemMapper extends Mapper {
17
	public function __construct(IDb $db) {
18
		parent::__construct($db, 'files_antivirus', '\OCA\Files_Antivirus\Db\Item');
19
	}
20
	
21
	
22
}
23