1 | <?php |
||
11 | class ZohoDatabaseHelper |
||
12 | { |
||
13 | /** |
||
14 | * Computes the name of the table based on the DAO plural module name. |
||
15 | * |
||
16 | * @param AbstractZohoDao $dao |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | public static function getTableName(AbstractZohoDao $dao, $prefix) |
||
27 | |||
28 | public static function getFlatFields(array $fields) |
||
37 | |||
38 | /** |
||
39 | * @param string $fieldName |
||
40 | * @return string |
||
41 | */ |
||
42 | public static function getUserMethodNameFromField(string $fieldName) |
||
47 | } |
||
48 |
This check looks for access to methods that are not accessible from the current context.
If you need to make a method accessible to another context you can raise its visibility level in the defining class.