12
12
namespace Gedmo \Tests \Blameable ;
13
13
14
14
use Doctrine \Common \EventManager ;
15
- use Gedmo \Tests \Blameable \Fixture \Entity \Company ;
16
15
use Gedmo \Blameable \Blameable ;
17
16
use Gedmo \Blameable \BlameableListener ;
17
+ use Gedmo \Tests \Blameable \Fixture \Entity \Company ;
18
18
use Gedmo \Tests \Tool \BaseTestCaseORM ;
19
19
use Ramsey \Uuid \Uuid ;
20
20
use Ramsey \Uuid \UuidInterface ;
@@ -24,7 +24,7 @@ final class BlameableUuidTest extends BaseTestCaseORM
24
24
private const COMPANY = Company::class;
25
25
26
26
/**
27
- * @var UuidInterface $uuid
27
+ * @var UuidInterface
28
28
*/
29
29
private $ uuid ;
30
30
@@ -48,7 +48,7 @@ public function testBlameableUuid(): void
48
48
$ company = new Company ();
49
49
$ company ->setName ('ACME ' );
50
50
51
- BlameableUuidTest ::assertInstanceOf (Blameable::class, $ company );
51
+ self ::assertInstanceOf (Blameable::class, $ company );
52
52
53
53
$ this ->em ->persist ($ company );
54
54
$ this ->em ->flush ();
@@ -61,7 +61,7 @@ public function testBlameableUuid(): void
61
61
$ created = $ foundCompany ->getCreated ();
62
62
$ createdUuid = $ created instanceof UuidInterface ? $ created ->toString () : null ;
63
63
64
- BlameableUuidTest ::assertSame ($ this ->uuid ->toString (), $ createdUuid );
64
+ self ::assertSame ($ this ->uuid ->toString (), $ createdUuid );
65
65
}
66
66
67
67
protected function getUsedEntityFixtures (): array
0 commit comments