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

MigrateToDomains::execute()   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
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
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