diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-10-24 14:05:49 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-10-24 14:05:49 +0100 |
| commit | dce3fc17a77de429d654952a4a15ef60b3ec9fec (patch) | |
| tree | 4eb846cf6e6d18ba77c21ddab6896a6533abd1ec /app/Http/RequestHandlers/PendingChanges.php | |
| parent | aca7a497a91d4e00d71d0a1aba83ffe3993cc187 (diff) | |
| download | webtrees-dce3fc17a77de429d654952a4a15ef60b3ec9fec.tar.gz webtrees-dce3fc17a77de429d654952a4a15ef60b3ec9fec.tar.bz2 webtrees-dce3fc17a77de429d654952a4a15ef60b3ec9fec.zip | |
DeadCode
Diffstat (limited to 'app/Http/RequestHandlers/PendingChanges.php')
| -rw-r--r-- | app/Http/RequestHandlers/PendingChanges.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/app/Http/RequestHandlers/PendingChanges.php b/app/Http/RequestHandlers/PendingChanges.php index 94bfec4349..506508fa1a 100644 --- a/app/Http/RequestHandlers/PendingChanges.php +++ b/app/Http/RequestHandlers/PendingChanges.php @@ -55,17 +55,12 @@ class PendingChanges implements RequestHandlerInterface /** @var PendingChangesService */ private $pending_changes_service; - /** @var TreeService */ - private $tree_service; - /** - * @param PendingChangesService $pending_changes_service - * @param TreeService $tree_service + * @param TreeService $tree_service */ - public function __construct(PendingChangesService $pending_changes_service, TreeService $tree_service) + public function __construct(TreeService $tree_service) { - $this->pending_changes_service = $pending_changes_service; - $this->tree_service = $tree_service; + $this->tree_service = $tree_service; } /** |
