WIP on document conversion
This commit is contained in:
17
src/lib/Domain/Table.php
Normal file
17
src/lib/Domain/Table.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace FeedReaderCentral\Domain;
|
||||
|
||||
/**
|
||||
* Constants to use when accessing tables
|
||||
*/
|
||||
class Table
|
||||
{
|
||||
/** @var string The user table */
|
||||
public const string USER = 'frc_user';
|
||||
|
||||
/** @var string The feed table */
|
||||
public const string FEED = 'feed';
|
||||
|
||||
/** @var string The item table */
|
||||
public const string ITEM = 'item';
|
||||
}
|
||||
Reference in New Issue
Block a user