Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
monitoring
/
vendor
/
laminas
/
laminas-cache
/
src
/
Psr
/
SimpleCache
/
File Content:
SimpleCacheInvalidArgumentException.php
<?php namespace PleskMonitoring\Laminas\Cache\Psr\SimpleCache; use InvalidArgumentException; use PleskMonitoring\Psr\SimpleCache\InvalidArgumentException as PsrInvalidArgumentException; use function sprintf; class SimpleCacheInvalidArgumentException extends InvalidArgumentException implements PsrInvalidArgumentException { public static function maximumKeyLengthExceeded(string $key, int $maximumKeyLength) : self { return new self(sprintf('Invalid key "%s" provided; key is too long. Must be no more than %d characters', $key, $maximumKeyLength)); } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
SimpleCacheDecorator.php
12337 bytes
0644
SimpleCacheException.php
245 bytes
0644
SimpleCacheInvalidArgumentException.php
576 bytes
0644
N4ST4R_ID | Naxtarrr