Completed
Push — master ( 0b658a...cae295 )
by
unknown
54:13
created

UpdateReport   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 18
rs 10
c 1
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getOrder() 0 4 1
A up() 0 4 1
1
<?php
2
3
namespace OroCRM\Bundle\SalesBundle\Migrations\Schema\v1_22;
4
5
use Doctrine\DBAL\Schema\Schema;
6
7
use Oro\Bundle\MigrationBundle\Migration\Migration;
8
use Oro\Bundle\MigrationBundle\Migration\OrderedMigrationInterface;
9
use Oro\Bundle\MigrationBundle\Migration\QueryBag;
10
11
class UpdateReport implements Migration, OrderedMigrationInterface
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function getOrder()
17
    {
18
        return 5;
19
    }
20
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function up(Schema $schema, QueryBag $queries)
25
    {
26
        $queries->addQuery(new UpdateReportQuery());
27
    }
28
}
29