Skip to content

Commit 57b2b64

Browse files
committed
StyleCi
1 parent 17fea2b commit 57b2b64

File tree

19 files changed

+22
-34
lines changed

19 files changed

+22
-34
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/Snackspace/VendingMachineConnectionType.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ abstract class VendingMachineConnectionType
1717
/**
1818
* String representation of machine connection type for display.
1919
*/
20-
public const CONNECTION_STRINGS =
21-
[
20+
public const CONNECTION_STRINGS = [
2221
self::UDP => 'UDP',
2322
self::MQTT => 'MQTT',
2423
];

app/HMS/Entities/Snackspace/VendingMachineType.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ abstract class VendingMachineType
1717
/**
1818
* String representation of machine types for display.
1919
*/
20-
public const TYPE_STRINGS =
21-
[
20+
public const TYPE_STRINGS = [
2221
self::VEND => 'Vending Machine',
2322
self::NOTE => 'Cash Acceptor',
2423
];

app/HMS/Entities/Tools/BookingType.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ abstract class BookingType
2222
/**
2323
* String representation of types for display.
2424
*/
25-
public const TYPE_STRINGS =
26-
[
25+
public const TYPE_STRINGS = [
2726
self::NORMAL => 'Normal',
2827
self::INDUCTION => 'Induction',
2928
self::MAINTENANCE => 'Maintenance',

0 commit comments

Comments
 (0)