Completed
Branch feature/pre-split (745f0c)
by Anton
03:28
created

TransactionalCommand::complete()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * components
4
 *
5
 * @author    Wolfy-J
6
 */
7
namespace Spiral\ORM\Commands;
8
9
use Spiral\ORM\CommandInterface;
10
use Spiral\ORM\Transaction;
11
12
/**
13
 * Command to handle multiple inner commands.
14
 */
15
class TransactionalCommand extends Transaction implements CommandInterface
16
{
17
    public function execute()
18
    {
19
        //nothing to do (see getCommands())
20
    }
21
22
    public function complete()
23
    {
24
        //nothing to do (see getCommands())
25
    }
26
27
    public function rollBack()
28
    {
29
        //nothing to do (see getCommands())
30
    }
31
}