for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace eZ\Publish\Core\MVC\Symfony\Cache\Tests\Http\SignalSlot;
use eZ\Publish\Core\SignalSlot\Signal\ContentService\UpdateContentSignal;
use eZ\Publish\Core\MVC\Symfony\Cache\Http\SignalSlot\UpdateUrlSlot;
use eZ\Publish\Core\SignalSlot\Signal\URLService\UpdateUrlSignal;
class UpdateUrlSlotTest extends AbstractPurgeAllSlotTest
{
* {@inheritdoc}
public static function createSignal()
return new UpdateUrlSignal([
'urlId' => 1,
]);
}
public static function getReceivedSignalClasses()
return [
UpdateContentSignal::class,
];
public function getSlotClass()
return UpdateUrlSlot::class;