mirror of
https://github.com/mrclay/minify.git
synced 2025-08-20 04:41:29 +02:00
explicitly mark parameters as nullable
This commit is contained in:
@@ -85,7 +85,7 @@ class Minify
|
||||
* @param Minify_CacheInterface $cache
|
||||
* @param LoggerInterface $logger
|
||||
*/
|
||||
public function __construct(Minify_CacheInterface $cache, LoggerInterface $logger = null)
|
||||
public function __construct(Minify_CacheInterface $cache, ?LoggerInterface $logger = null)
|
||||
{
|
||||
$this->cache = $cache;
|
||||
$this->logger = $logger;
|
||||
|
Reference in New Issue
Block a user