1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-11 00:52:29 +01:00
OwncloudContactsOfficial/lib/controller.php

33 lines
618 B
PHP
Raw Normal View History

2013-09-17 18:46:59 +02:00
<?php
/**
* @author Thomas Tanghus
2014-01-26 00:40:22 +01:00
* @author Thomas Tanghus
* @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
*
2013-09-17 18:46:59 +02:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Contacts;
2015-06-30 00:25:55 +02:00
use OCP\AppFramework\Controller as BaseController;
use OCP\IRequest;
2013-09-17 18:46:59 +02:00
/**
* Base Controller class for Contacts App
*/
class Controller extends BaseController {
/**
* @var App
*/
protected $app;
public function __construct($appName, IRequest $request, App $app) {
parent::__construct($appName, $request);
2013-09-17 18:46:59 +02:00
$this->app = $app;
}
}