Skip to content

Commit c31b37d

Browse files
committed
.
1 parent 9ee4d3c commit c31b37d

67 files changed

Lines changed: 117 additions & 117 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/Console/Commands/ApiTokenCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private function createToken(User $user): int
5252
$this->newLine();
5353
$this->line($token->plainTextToken);
5454
$this->newLine();
55-
$this->warn('Save this token it will not be shown again.');
55+
$this->warn('Save this token... it will not be shown again.');
5656

5757
return 0;
5858
}

app/Models/BaseModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected function hasDeviceAccess(Builder $query, User $user, ?string $table =
7575
*
7676
* Resolves the row's owning device by joining through the `ports` table on
7777
* `port_id`, so this works for any related table that has a `port_id`
78-
* column regardless of whether the table also denormalizes `device_id`.
78+
* column. regardless of whether the table also denormalizes `device_id`.
7979
*/
8080
protected function hasPortAccess(Builder $query, User $user, ?string $table = null): Builder
8181
{

app/Restify/AccessPointRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ public function fields(RestifyRequest $request): array
9393
}
9494

9595
/**
96-
* Access points are discovered automatically by LibreNMS during the discovery process not created manually.
96+
* Access points are discovered automatically by LibreNMS during the discovery process not created manually.
9797
*/
9898
public static function authorizedToStore(Request $request): bool
9999
{
100100
return false;
101101
}
102102

103103
/**
104-
* Access points are managed by the LibreNMS discovery process they are removed when no longer detected.
104+
* Access points are managed by the LibreNMS discovery process they are removed when no longer detected.
105105
*/
106106
public function authorizedToDelete(Request $request): bool
107107
{

app/Restify/AlertLogRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function fields(RestifyRequest $request): array
5858
}
5959

6060
/**
61-
* Alert logs are generated internally by the alerting engine not created manually via the API.
61+
* Alert logs are generated internally by the alerting engine not created manually via the API.
6262
*/
6363
public static function authorizedToStore(Request $request): bool
6464
{

app/Restify/AlertRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ public function actions(RestifyRequest $request): array
8888
}
8989

9090
/**
91-
* Alerts are created automatically by the alerting engine not manually via the API.
91+
* Alerts are created automatically by the alerting engine not manually via the API.
9292
*/
9393
public static function authorizedToStore(Request $request): bool
9494
{
9595
return false;
9696
}
9797

9898
/**
99-
* Alerts are managed by the alerting engine lifecycle use acknowledge/unmute actions to change state instead.
99+
* Alerts are managed by the alerting engine lifecycle use acknowledge/unmute actions to change state instead.
100100
*/
101101
public function authorizedToDelete(Request $request): bool
102102
{

app/Restify/ApplicationRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ public function fields(RestifyRequest $request): array
6969
}
7070

7171
/**
72-
* Applications are discovered automatically by LibreNMS during the discovery process not created manually.
72+
* Applications are discovered automatically by LibreNMS during the discovery process not created manually.
7373
*/
7474
public static function authorizedToStore(Request $request): bool
7575
{
7676
return false;
7777
}
7878

7979
/**
80-
* Applications are managed by the LibreNMS discovery process they are removed when no longer detected.
80+
* Applications are managed by the LibreNMS discovery process they are removed when no longer detected.
8181
*/
8282
public function authorizedToDelete(Request $request): bool
8383
{

app/Restify/AuthLogRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static function showQuery(RestifyRequest $request, Builder|Relation $quer
6868
}
6969

7070
/**
71-
* Auth logs are generated internally by the authentication system not created manually via the API.
71+
* Auth logs are generated internally by the authentication system not created manually via the API.
7272
*/
7373
public static function authorizedToStore(Request $request): bool
7474
{

app/Restify/AvailabilityRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static function showQuery(RestifyRequest $request, Builder|Relation $quer
7474
}
7575

7676
/**
77-
* Availability records are calculated automatically by LibreNMS during polling not created manually.
77+
* Availability records are calculated automatically by LibreNMS during polling not created manually.
7878
*/
7979
public static function authorizedToStore(Request $request): bool
8080
{

app/Restify/BgpPeerRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ public function fields(RestifyRequest $request): array
102102
}
103103

104104
/**
105-
* BGP peers are discovered automatically by LibreNMS during the discovery process not created manually.
105+
* BGP peers are discovered automatically by LibreNMS during the discovery process not created manually.
106106
*/
107107
public static function authorizedToStore(Request $request): bool
108108
{
109109
return false;
110110
}
111111

112112
/**
113-
* BGP peers are managed by the LibreNMS discovery process they are removed when no longer detected.
113+
* BGP peers are managed by the LibreNMS discovery process they are removed when no longer detected.
114114
*/
115115
public function authorizedToDelete(Request $request): bool
116116
{

app/Restify/CefSwitchingRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function fields(RestifyRequest $request): array
8080
}
8181

8282
/**
83-
* CEF switching entries are discovered automatically by LibreNMS during the polling process not created manually.
83+
* CEF switching entries are discovered automatically by LibreNMS during the polling process not created manually.
8484
*/
8585
public static function authorizedToStore(Request $request): bool
8686
{

0 commit comments

Comments
 (0)