]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding PHPDoc comments
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 22 Oct 2013 20:38:05 +0000 (22:38 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 22 Oct 2013 20:38:05 +0000 (22:38 +0200)
apps/files/lib/app.php

index ccf629ae3cb47e1b619e2a2eddce71e954f791e8..810a9fdd8d18b01fb0ac3c4b5b4c4d3586806cfe 100644 (file)
 namespace OCA\Files;
 
 class App {
+       /**
+        * @var \OC_L10N
+        */
        private $l10n;
+
+       /**
+        * @var \OC\Files\View
+        */
        private $view;
 
        public function __construct($view, $l10n) {