diff options
author | Joas Schilling <coding@schilljs.com> | 2016-12-04 12:41:14 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-12-04 12:41:14 +0100 |
commit | 7c1b288b575955276772f51402d0ea5ab55db540 (patch) | |
tree | f82cade8a2426dd1b9b49ab274c7d89bc9d8c859 /apps/files/lib | |
parent | 8baf986d3bf6efb4d81fb18eac07592932467b8e (diff) | |
download | nextcloud-server-7c1b288b575955276772f51402d0ea5ab55db540.tar.gz nextcloud-server-7c1b288b575955276772f51402d0ea5ab55db540.zip |
Add some generic tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/Activity/Filter/FileChanges.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/lib/Activity/Filter/FileChanges.php b/apps/files/lib/Activity/Filter/FileChanges.php index dc7daf96bac..d8d1a698816 100644 --- a/apps/files/lib/Activity/Filter/FileChanges.php +++ b/apps/files/lib/Activity/Filter/FileChanges.php @@ -34,6 +34,10 @@ class FileChanges implements IFilter { /** @var IURLGenerator */ protected $url; + /** + * @param IL10N $l + * @param IURLGenerator $url + */ public function __construct(IL10N $l, IURLGenerator $url) { $this->l = $l; $this->url = $url; |