Skip to content

Commit 5c4ac00

Browse files
committed
StyleCi
1 parent 17fea2b commit 5c4ac00

File tree

11 files changed

+11
-20
lines changed

11 files changed

+11
-20
lines changed

app/Console/Commands/Permissions/DefaultsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DefaultsCommand extends BaseCommand
2424
* @var string
2525
*/
2626
protected $description = 'Restores roles and permissions to the default set. '
27-
. 'You should probably run migrations beforehand and the seeder afterwards';
27+
. 'You should probably run migrations beforehand and the seeder afterwards';
2828

2929
/**
3030
* @var array

app/HMS/Entities/Gatekeeper/AccessLogResult.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ abstract class AccessLogResult
1717
/**
1818
* String representation of states for display.
1919
*/
20-
public const RESULT_STRINGS =
21-
[
20+
public const RESULT_STRINGS = [
2221
self::ACCESS_DENIED => 'Denied',
2322
self::ACCESS_GRANTED => 'Granted',
2423
];

app/HMS/Entities/Gatekeeper/DoorState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ abstract class DoorState
2828
/**
2929
* String representation of states for display.
3030
*/
31-
public const STATE_STRINGS =
32-
[
31+
public const STATE_STRINGS = [
3332
self::UNKNOWN => 'Unknown',
3433
self::OPEN => 'Open',
3534
self::CLOSED => 'Closed',

app/HMS/Entities/Gatekeeper/PinState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ abstract class PinState
2727
/**
2828
* String representation of states for display.
2929
*/
30-
public const STATE_STRINGS =
31-
[
30+
public const STATE_STRINGS = [
3231
self::ACTIVE => 'Active',
3332
self::EXPIRED => 'Expired',
3433
self::CANCELLED => 'Cancelled',

app/HMS/Entities/Gatekeeper/RfidTagState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ abstract class RfidTagState
2222
/**
2323
* String representation of states for display.
2424
*/
25-
public const STATE_STRINGS =
26-
[
25+
public const STATE_STRINGS = [
2726
self::ACTIVE => 'Active',
2827
self::EXPIRED => 'Destroyed',
2928
self::LOST => 'Lost',

app/HMS/Entities/Members/BoxState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ class BoxState
2222
/**
2323
* String representation of states for display.
2424
*/
25-
public const STATE_STRINGS =
26-
[
25+
public const STATE_STRINGS = [
2726
self::INUSE => 'In Use',
2827
self::REMOVED => 'Removed',
2928
self::ABANDONED => 'Abandoned',

app/HMS/Entities/Members/ProjectState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ class ProjectState
2222
/**
2323
* String representation of states for display.
2424
*/
25-
public const STATE_STRINGS =
26-
[
25+
public const STATE_STRINGS = [
2726
self::ACTIVE => 'Active',
2827
self::COMPLETE => 'Complete',
2928
self::ABANDONED => 'Abandoned',

app/HMS/Entities/Tools/ToolState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ abstract class ToolState
2222
/**
2323
* String representation of states for display.
2424
*/
25-
public const STATE_STRINGS =
26-
[
25+
public const STATE_STRINGS = [
2726
self::IN_USE => 'In Use',
2827
self::FREE => 'Free',
2928
self::DISABLED => 'Disabled',

app/HMS/Entities/Tools/UsageState.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ abstract class UsageState
1111
/**
1212
* String representation of states for display.
1313
*/
14-
public const STATE_STRINGS =
15-
[
14+
public const STATE_STRINGS = [
1615
self::IN_PROGRESS => 'In Progress',
1716
self::COMPLETE => 'Complete',
1817
self::CHARGED => 'Carged',

app/HMS/Governance/VotingPreference.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ class VotingPreference
2222
/**
2323
* String representation of states for display.
2424
*/
25-
public const STATE_STRINGS =
26-
[
25+
public const STATE_STRINGS = [
2726
self::AUTOMATIC => 'Automatic',
2827
self::VOTING => 'Voting',
2928
self::NONVOTING => 'Non-voting',

0 commit comments

Comments
 (0)