for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace RoaveTest\DoctrineSimpleCache;
trait TTLProviderTrait
{
public function invalidTTLs() : array
return [
[''],
[true],
[false],
[2.5],
['rand:str'],
[new \stdClass()],
[['array']],
];
}