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

PagePublicPrivacy::templatePath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
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