Version20140822185744::up()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 2
rs 10
1
<?php
2
3
namespace Example\Migrations\TestAntiMattr\MongoDB;
4
5
use AntiMattr\MongoDB\Migrations\AbstractMigration;
6
use MongoDB\Database;
7
8
/**
9
 * Auto-generated Migration: Please modify to your needs!
10
 */
11
class Version20140822185744 extends AbstractMigration
12
{
13
    /**
14
     * @return string
15
     */
16
    public function getDescription()
17
    {
18
        return 'Third Version';
19
    }
20
21
    public function up(Database $db)
22
    {
23
        // this up() migration is auto-generated, please modify it to your needs
24
    }
25
26
    public function down(Database $db)
27
    {
28
        // this down() migration is auto-generated, please modify it to your needs
29
    }
30
}
31