Passed
Push — search ( bdb480...5e7f6e )
by Simon
17:14 queued 07:17
created

MigrateToDomains   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 3 1
1
<?php
2
/******************************************************************************
3
 * Wikipedia Account Creation Assistance tool                                 *
4
 *                                                                            *
5
 * All code in this file is released into the public domain by the ACC        *
6
 * Development Team. Please see team.json for a list of contributors.         *
7
 ******************************************************************************/
8
9
namespace Waca\ConsoleTasks;
10
11
use Waca\DataObjects\Domain;
12
use Waca\DataObjects\RequestQueue;
13
use Waca\Tasks\ConsoleTaskBase;
14
15
class MigrateToDomains extends ConsoleTaskBase
16
{
17
    public function execute()
18
    {
19
        echo "This migration script must be run with the entire application at an earlier version.";
20
    }
21
}
22