Completed
Branch trunk (78000f)
by SuperNova.WS
25:55 queued 09:00
created

ActiveAbstractObjectDump   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 27
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 1
1
<?php
2
/**
3
 * Created by Gorlum 13.07.2017 15:33
4
 */
5
6
namespace DBAL\Tests\Fixtures;
7
8
9
use DBAL\ActiveRecordAbstract;
10
11
class ActiveAbstractObjectDump extends ActiveRecordAbstract {
12
  protected static $_tableName = '';
13
14
  /**
15
   * @return bool
16
   */
17
  protected function dbInsert() {
18
    // TODO: Implement dbInsert() method.
19
  }
20
21
  /**
22
   * Asks DB for last insert ID
23
   *
24
   * @return int|string
25
   */
26
  protected function dbLastInsertId() {
27
    // TODO: Implement dbLastInsertId() method.
28
  }
29
30
  /**
31
   * @return bool
32
   */
33
  protected function dbUpdate() {
34
    // TODO: Implement dbUpdate() method.
35
  }
36
37
}
38