Passed
Push — dependabot/composer/squizlabs/... ( b689d5...f9f311 )
by
unknown
14:25 queued 10:31
created

PagePublicPrivacy   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 3
c 1
b 0
f 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A templatePath() 0 3 1
1
<?php
2
/******************************************************************************
3
 * Wikipedia Account Creation Assistance tool                                 *
4
 * ACC Development Team. Please see team.json for a list of contributors.     *
5
 *                                                                            *
6
 * This is free and unencumbered software released into the public domain.    *
7
 * Please see LICENSE.md for the full licencing statement.                    *
8
 ******************************************************************************/
9
10
namespace Waca\Pages;
11
12
use Waca\Fragments\PrivacyStatement;
13
use Waca\Tasks\PublicInterfacePageBase;
14
15
class PagePublicPrivacy extends PublicInterfacePageBase
16
{
17
    use PrivacyStatement;
18
19
    protected function templatePath()
20
    {
21
        return 'markdown/public.tpl';
22
    }
23
}
24