Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Some phpdoc fixes
Signed-off-by: Patrik Kernstock <[email protected]>
  • Loading branch information
patschi committed Aug 23, 2018
commit 817bc4116780ff5c4fed67197598fb6a3fa75a32
7 changes: 4 additions & 3 deletions lib/SystemStatistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ class SystemStatistics {
private $config;
/** @var View view on data/ */
private $view;
/** @var appFetcher */
private $appFetcher;
/** @var appManager */
/** @var IAppManager */
private $appManager;
/** @var AppFetcher */
private $appFetcher;

/**
* SystemStatistics constructor.
*
* @param IConfig $config
* @param IAppManager $appManager
* @param AppFetcher $appFetcher
*/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove the doc block, just duplicating the method signature anyway.
Or you add the $appFetcher

public function __construct(IConfig $config, IAppManager $appManager, AppFetcher $appFetcher) {
$this->config = $config;
Expand Down