Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
AydinHassan committed Jun 12, 2020
1 parent 01bdab4 commit 4d2c439
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Config/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Index extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::config';
public const ADMIN_RESOURCE = 'Jh_Import::config';

/**
* @var PageFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Config/Info.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Info extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::config';
public const ADMIN_RESOURCE = 'Jh_Import::config';

/**
* @var PageFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Files/Delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Delete extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::files';
public const ADMIN_RESOURCE = 'Jh_Import::files';

/**
* @var DirectoryList
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Files/Download.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Download extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::files';
public const ADMIN_RESOURCE = 'Jh_Import::files';

/**
* @var FileFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Log/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Import extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::logs';
public const ADMIN_RESOURCE = 'Jh_Import::logs';

/**
* @var PageFactory
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Adminhtml/Log/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Index extends Action
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Jh_Import::logs';
public const ADMIN_RESOURCE = 'Jh_Import::logs';

/**
* @var PageFactory
Expand Down
16 changes: 8 additions & 8 deletions src/LogLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
*/
class LogLevel
{
const DEBUG = 'DEBUG';
const INFO = 'INFO';
const NOTICE = 'NOTICE';
const WARNING = 'WARNING';
const ERROR = 'ERROR';
const CRITICAL = 'CRITICAL';
const ALERT = 'ALERT';
const EMERGENCY = 'EMERGENCY';
public const DEBUG = 'DEBUG';
public const INFO = 'INFO';
public const NOTICE = 'NOTICE';
public const WARNING = 'WARNING';
public const ERROR = 'ERROR';
public const CRITICAL = 'CRITICAL';
public const ALERT = 'ALERT';
public const EMERGENCY = 'EMERGENCY';

/**
* @var array $levels Logging levels
Expand Down

0 comments on commit 4d2c439

Please sign in to comment.