mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-28 10:24:11 +01:00
33 lines
618 B
PHP
33 lines
618 B
PHP
<?php
|
|
/**
|
|
* @author Thomas Tanghus
|
|
* @author Thomas Tanghus
|
|
* @copyright 2013-2014 Thomas Tanghus (thomas@tanghus.net)
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
namespace OCA\Contacts;
|
|
|
|
use OCP\AppFramework\Controller as BaseController;
|
|
use OCP\IRequest;
|
|
|
|
/**
|
|
* 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);
|
|
$this->app = $app;
|
|
}
|
|
|
|
}
|