Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/updraftp.../vendor/symfony/event-di.../Debug
File: TraceableEventDispatcherInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
/*
[2] Fix | Delete
* This file is part of the Symfony package.
[3] Fix | Delete
*
[4] Fix | Delete
* (c) Fabien Potencier <fabien@symfony.com>
[5] Fix | Delete
*
[6] Fix | Delete
* For the full copyright and license information, please view the LICENSE
[7] Fix | Delete
* file that was distributed with this source code.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
namespace Symfony\Component\EventDispatcher\Debug;
[11] Fix | Delete
[12] Fix | Delete
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
[13] Fix | Delete
[14] Fix | Delete
/**
[15] Fix | Delete
* @author Fabien Potencier <fabien@symfony.com>
[16] Fix | Delete
*/
[17] Fix | Delete
interface TraceableEventDispatcherInterface extends EventDispatcherInterface
[18] Fix | Delete
{
[19] Fix | Delete
/**
[20] Fix | Delete
* Gets the called listeners.
[21] Fix | Delete
*
[22] Fix | Delete
* @return array An array of called listeners
[23] Fix | Delete
*/
[24] Fix | Delete
public function getCalledListeners();
[25] Fix | Delete
[26] Fix | Delete
/**
[27] Fix | Delete
* Gets the not called listeners.
[28] Fix | Delete
*
[29] Fix | Delete
* @return array An array of not called listeners
[30] Fix | Delete
*/
[31] Fix | Delete
public function getNotCalledListeners();
[32] Fix | Delete
}
[33] Fix | Delete
[34] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function