diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 22:38:05 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 22:38:05 +0200 |
commit | 0283589a19518d6db266cdb84ba35e5d4bf8a979 (patch) | |
tree | a656e9d1b97d32786b59320c8ebcf0c8ccaf7389 /apps/files/lib | |
parent | 45e6d9670266884806431f35a4cedb80c0ceb229 (diff) | |
download | nextcloud-server-0283589a19518d6db266cdb84ba35e5d4bf8a979.tar.gz nextcloud-server-0283589a19518d6db266cdb84ba35e5d4bf8a979.zip |
adding PHPDoc comments
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/app.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index ccf629ae3cb..810a9fdd8d1 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -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) { |