Skip to content

Commit 3d2b777

Browse files
committed
style: update license and doc blocks
1 parent 7773249 commit 3d2b777

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/Access/CheckAccess.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of SeAT
55
*
6-
* Copyright (C) 2015 to 2022 Leon Jacobs
6+
* Copyright (C) 2015 to present Leon Jacobs
77
*
88
* This program is free software; you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by

src/Cache/RedisCache.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of SeAT
55
*
6-
* Copyright (C) 2015 to 2022 Leon Jacobs
6+
* Copyright (C) 2015 to present Leon Jacobs
77
*
88
* This program is free software; you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by
@@ -73,7 +73,6 @@ public function __construct(Client $redis = null)
7373
* @param string $key
7474
* @param \Seat\Eseye\Containers\EsiResponse $value
7575
* @param int|\DateInterval|null $ttl
76-
*
7776
* @return bool
7877
*/
7978
public function set(string $key, mixed $value, null|int|DateInterval $ttl = null): bool
@@ -105,7 +104,6 @@ public function set(string $key, mixed $value, null|int|DateInterval $ttl = null
105104
/**
106105
* @param string $key
107106
* @param mixed|null $default
108-
*
109107
* @return \Seat\Eseye\Containers\EsiResponse
110108
*/
111109
public function get(string $key, mixed $default = null): mixed
@@ -133,7 +131,6 @@ public function get(string $key, mixed $default = null): mixed
133131

134132
/**
135133
* @param string $key
136-
*
137134
* @return bool
138135
*/
139136
public function has(string $key): bool
@@ -145,7 +142,6 @@ public function has(string $key): bool
145142

146143
/**
147144
* @param string $key
148-
*
149145
* @return bool
150146
*/
151147
public function delete(string $key): bool
@@ -166,7 +162,6 @@ public function clear(): bool
166162
/**
167163
* @param string $uri
168164
* @param string $query
169-
*
170165
* @return string
171166
*/
172167
public function buildCacheKey(string $uri, string $query = ''): string

src/Containers/EsiResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of SeAT
55
*
6-
* Copyright (C) 2015 to 2022 Leon Jacobs
6+
* Copyright (C) 2015 to present Leon Jacobs
77
*
88
* This program is free software; you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)