for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Thomas Tanghus
* @copyright 2013-2014 Thomas Tanghus ([email protected])
*
* 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;
}