| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Suppress "error - 0 - No summary was found for this file" on phpdoc generation |
| 5 |
* |
| 6 |
* @package WPDataAccess\Plugin_Table_Models |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace WPDataAccess\Plugin_Table_Models { |
| 10 |
|
| 11 |
/** |
| 12 |
* Class WPDA_Logging_Model |
| 13 |
* |
| 14 |
* Model for plugin table 'logging' |
| 15 |
* |
| 16 |
* @author Peter Schulz |
| 17 |
* @since 2.6.0 |
| 18 |
*/ |
| 19 |
class WPDA_Logging_Model extends WPDA_Plugin_Table_Base_Model { |
| 20 |
|
| 21 |
const BASE_TABLE_NAME = 'wpda_logging'; |
| 22 |
|
| 23 |
} |
| 24 |
|
| 25 |
} |
| 26 |
|