File tree Expand file tree Collapse file tree 2 files changed +6
-22
lines changed
classes/reportbuilder/local/entities Expand file tree Collapse file tree 2 files changed +6
-22
lines changed Original file line number Diff line number Diff line change 39
39
*/
40
40
class issue extends base {
41
41
42
- /**
43
- * Database tables that this entity uses and their default aliases
44
- *
45
- * @return array
46
- */
47
- protected function get_default_table_aliases (): array {
48
- return ['tool_certificate_issues ' => 'tci ' ];
49
- }
50
-
51
42
/**
52
43
* Database tables that this entity uses
53
44
*
54
45
* @return string[]
55
46
*/
56
47
protected function get_default_tables (): array {
57
- return array_keys ($ this ->get_default_table_aliases ());
48
+ return [
49
+ 'tool_certificate_issues '
50
+ ];
58
51
}
59
52
60
53
/**
Original file line number Diff line number Diff line change 39
39
*/
40
40
class template extends base {
41
41
42
- /**
43
- * Database tables that this entity uses and their default aliases
44
- *
45
- * @return array
46
- */
47
- protected function get_default_table_aliases (): array {
48
- return [
49
- 'tool_certificate_templates ' => 'tct ' ,
50
- ];
51
- }
52
-
53
42
/**
54
43
* Database tables that this entity uses
55
44
*
56
45
* @return string[]
57
46
*/
58
47
protected function get_default_tables (): array {
59
- return array_keys ($ this ->get_default_table_aliases ());
48
+ return [
49
+ 'tool_certificate_templates ' ,
50
+ ];
60
51
}
61
52
62
53
/**
You can’t perform that action at this time.
0 commit comments