18 lines
346 B
PHP
18 lines
346 B
PHP
<?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';
|
|
}
|