Skip to content

Commit

Permalink
style: update license and doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
warlof committed Jul 14, 2023
1 parent 7773249 commit 3d2b777
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Access/CheckAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of SeAT
*
* Copyright (C) 2015 to 2022 Leon Jacobs
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
7 changes: 1 addition & 6 deletions src/Cache/RedisCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of SeAT
*
* Copyright (C) 2015 to 2022 Leon Jacobs
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -73,7 +73,6 @@ public function __construct(Client $redis = null)
* @param string $key
* @param \Seat\Eseye\Containers\EsiResponse $value
* @param int|\DateInterval|null $ttl
*
* @return bool
*/
public function set(string $key, mixed $value, null|int|DateInterval $ttl = null): bool
Expand Down Expand Up @@ -105,7 +104,6 @@ public function set(string $key, mixed $value, null|int|DateInterval $ttl = null
/**
* @param string $key
* @param mixed|null $default
*
* @return \Seat\Eseye\Containers\EsiResponse
*/
public function get(string $key, mixed $default = null): mixed
Expand Down Expand Up @@ -133,7 +131,6 @@ public function get(string $key, mixed $default = null): mixed

/**
* @param string $key
*
* @return bool
*/
public function has(string $key): bool
Expand All @@ -145,7 +142,6 @@ public function has(string $key): bool

/**
* @param string $key
*
* @return bool
*/
public function delete(string $key): bool
Expand All @@ -166,7 +162,6 @@ public function clear(): bool
/**
* @param string $uri
* @param string $query
*
* @return string
*/
public function buildCacheKey(string $uri, string $query = ''): string
Expand Down
2 changes: 1 addition & 1 deletion src/Containers/EsiResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of SeAT
*
* Copyright (C) 2015 to 2022 Leon Jacobs
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 3d2b777

Please sign in to comment.