Skip to content

Commit

Permalink
fix cs: DbTable no visibility on constants
Browse files Browse the repository at this point in the history
  • Loading branch information
misha-rollun committed Jan 26, 2022
1 parent f74fe37 commit fff8ab6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/DataStore/src/DataStore/DbTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
*/
class DbTable extends DataStoreAbstract
{
const LOG_METHOD = 'method';
const LOG_TABLE = 'table';
const LOG_TIME = 'time';
const LOG_REQUEST = 'request';
const LOG_RESPONSE = 'response';
const LOG_ROLLBACK = 'rollbackTransaction';
const LOG_SQL = 'sql';
const LOG_COUNT = 'count';
public const LOG_METHOD = 'method';
public const LOG_TABLE = 'table';
public const LOG_TIME = 'time';
public const LOG_REQUEST = 'request';
public const LOG_RESPONSE = 'response';
public const LOG_ROLLBACK = 'rollbackTransaction';
public const LOG_SQL = 'sql';
public const LOG_COUNT = 'count';

/**
* @var TableGateway
Expand Down

0 comments on commit fff8ab6

Please sign in to comment.