adding PHPDoc comments

This commit is contained in:
Thomas Müller 2013-10-22 22:38:05 +02:00
parent 45e6d96702
commit 0283589a19

View file

@ -25,7 +25,14 @@
namespace OCA\Files;
class App {
/**
* @var \OC_L10N
*/
private $l10n;
/**
* @var \OC\Files\View
*/
private $view;
public function __construct($view, $l10n) {