mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-04 02:36:49 +07:00
removed useless namespace aliasing
This commit is contained in:
@@ -131,8 +131,8 @@ All database queries for that object should be put into a mapper class. This fol
|
||||
<?php
|
||||
namespace \OCA\YourApp\Db;
|
||||
|
||||
use \OCA\AppFramework\Db\DoesNotExistException as DoesNotExistException;
|
||||
use \OCA\AppFramework\Db\Mapper as Mapper;
|
||||
use \OCA\AppFramework\Db\DoesNotExistException;
|
||||
use \OCA\AppFramework\Db\Mapper;
|
||||
|
||||
|
||||
class ItemMapper extends Mapper {
|
||||
|
||||
Reference in New Issue
Block a user