File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public function __construct(ManagerRegistry $registry)
34
34
/**
35
35
* This cache warmer is not optional, without proxies fatal error occurs!
36
36
*
37
- * @return false
37
+ * @return bool
38
38
*/
39
39
public function isOptional ()
40
40
{
Original file line number Diff line number Diff line change 14
14
use PHPUnit \Framework \TestCase ;
15
15
use Symfony \Bridge \Doctrine \IdGenerator \UuidGenerator ;
16
16
use Symfony \Component \Uid \Factory \UuidFactory ;
17
- use Symfony \Component \Uid \NilUuid ;
18
17
use Symfony \Component \Uid \Uuid ;
19
18
use Symfony \Component \Uid \UuidV4 ;
20
19
use Symfony \Component \Uid \UuidV6 ;
@@ -35,7 +34,7 @@ public function testUuidCanBeGenerated()
35
34
36
35
public function testCustomUuidfactory ()
37
36
{
38
- $ uuid = new NilUuid ();
37
+ $ uuid = new UuidV4 ();
39
38
$ em = new EntityManager ();
40
39
$ factory = $ this ->createMock (UuidFactory::class);
41
40
$ factory ->expects ($ this ->any ())
You can’t perform that action at this time.
0 commit comments