Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cs #1527

Merged
merged 1 commit into from
Aug 30, 2023
Merged

cs #1527

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Imagine/Cache/Resolver/AbstractFilesystemResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ public function __construct(Filesystem $filesystem)
$this->filesystem = $filesystem;
}

/**
* @param Request $request
*/
public function setRequest(Request $request = null)
{
$this->request = $request;
Expand Down
2 changes: 0 additions & 2 deletions Imagine/Cache/Resolver/CacheResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ class CacheResolver implements ResolverInterface
* A "local" prefix for this wrapper. This is useful when re-using the same resolver for multiple filters.
* * index_key
* The name of the index key being used to save a list of created cache keys regarding one image and filter pairing.
*
* @param OptionsResolver $optionsResolver
*/
public function __construct(Cache $cache, ResolverInterface $cacheResolver, array $options = [], OptionsResolver $optionsResolver = null)
{
Expand Down
2 changes: 0 additions & 2 deletions Imagine/Cache/Resolver/PsrCacheResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ final class PsrCacheResolver implements ResolverInterface
* A "local" prefix for this wrapper. This is useful when re-using the same resolver for multiple filters.
* * index_key
* The name of the index key being used to save a list of created cache keys regarding one image and filter pairing.
*
* @param OptionsResolver $optionsResolver
*/
public function __construct(CacheItemPoolInterface $cache, ResolverInterface $cacheResolver, array $options = [], OptionsResolver $optionsResolver = null)
{
Expand Down
2 changes: 0 additions & 2 deletions Imagine/Cache/SignerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ interface SignerInterface
* Return the hash for path and runtime config.
*
* @param string $path
* @param array $runtimeConfig
*
* @return string
*/
Expand All @@ -28,7 +27,6 @@ public function sign($path, array $runtimeConfig = null);
*
* @param string $hash
* @param string $path
* @param array $runtimeConfig
*
* @return bool
*/
Expand Down
Loading