|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
class Entity { |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* @var db_mysql|null $dbStatic |
|
7
|
|
|
*/ |
|
8
|
|
|
public static $dbStatic = null; |
|
9
|
|
|
public static $tableName = '_table'; |
|
10
|
|
|
public static $idField = 'id'; |
|
11
|
|
|
public static $_containerName = 'PropertyHiderInArray'; |
|
12
|
|
|
|
|
13
|
|
|
/** |
|
14
|
|
|
* @var array $row |
|
15
|
|
|
*/ |
|
16
|
|
|
protected $row = array(); |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* @var PropertyHiderInArray |
|
20
|
|
|
*/ |
|
21
|
|
|
public $_container; |
|
22
|
|
|
|
|
23
|
|
|
/** |
|
24
|
|
|
* @var int|float|string $dbId |
|
25
|
|
|
*/ |
|
26
|
|
|
protected $dbId = 0; |
|
27
|
|
|
|
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Buddy constructor. |
|
31
|
|
|
* |
|
32
|
|
|
* @param \Pimple\GlobalContainer $c |
|
33
|
|
|
*/ |
|
34
|
|
|
public function __construct($c) { |
|
35
|
|
|
empty(static::$dbStatic) && !empty($c->db) ? static::$dbStatic = $c->db : false; |
|
|
|
|
|
|
36
|
|
|
|
|
37
|
|
|
$this->_container = new static::$_containerName(); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
// TODO - move to reader ???????? |
|
|
|
|
|
|
41
|
|
|
public function delete() { |
|
42
|
|
|
return classSupernova::$gc->dbRowOperator->deleteById($this); |
|
|
|
|
|
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @return int|string |
|
47
|
|
|
*/ |
|
48
|
|
|
// TODO - move to reader ???????? |
|
|
|
|
|
|
49
|
|
|
public function insert() { |
|
50
|
|
|
return classSupernova::$gc->dbRowOperator->insert($this); |
|
|
|
|
|
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
public function isEmpty() { |
|
54
|
|
|
return empty($this->row); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public function isNew() { |
|
58
|
|
|
return empty($this->row[static::$idField]); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @param array $row |
|
63
|
|
|
*/ |
|
64
|
|
|
public function setRow($row) { |
|
65
|
|
|
$this->row = $row; |
|
66
|
|
|
// TODO - $row can be empty |
|
67
|
|
|
if (!empty(static::$idField)) { |
|
68
|
|
|
$this->setDbId($row[static::$idField]); |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* Compiles object data into db row |
|
74
|
|
|
* |
|
75
|
|
|
* @return array |
|
76
|
|
|
*/ |
|
77
|
|
|
public function getRow() { |
|
78
|
|
|
return $this->row; |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
public function setDbId($value) { |
|
82
|
|
|
$this->dbId = $value; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
|
|
86
|
|
|
/** |
|
87
|
|
|
* @return int|float|string |
|
88
|
|
|
*/ |
|
89
|
|
|
public function getDbId() { |
|
90
|
|
|
return $this->dbId; |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
} |
|
94
|
|
|
|
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.
For example, imagine you have a variable
$accountIdthat can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to theidproperty of an instance of theAccountclass. This class holds a proper account, so the id value must no longer be false.Either this assignment is in error or a type check should be added for that assignment.