updated theme, fix deprecations in events dispatching (#1145)

This commit is contained in:
Kevin Papst
2019-09-25 19:12:12 +02:00
committed by GitHub
parent d661c8b54e
commit 8d81a394ee
16 changed files with 86 additions and 71 deletions

View File

@@ -22,7 +22,7 @@ class PrepareUserEventTest extends TestCase
{
$user = new User();
$sut = new PrepareUserEvent($user);
$this->assertEquals('app.prepare_user', PrepareUserEvent::PREPARE);
$this->assertEquals(PrepareUserEvent::class, PrepareUserEvent::PREPARE);
$this->assertSame($user, $sut->getUser());
}
}