Passed
Push — stable ( bb5d82...d4688e )
by Nuno
02:59 queued 01:12
created

src/Contracts/Adapters/Phpunit/Listener.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * This file is part of Collision.
5
 *
6
 * (c) Nuno Maduro <[email protected]>
7
 *
8
 *  For the full copyright and license information, please view the LICENSE
9
 *  file that was distributed with this source code.
10
 */
11
12
namespace NunoMaduro\Collision\Contracts\Adapters\Phpunit;
13
14
use PHPUnit\Framework\TestListener;
15
16
/**
17
 * This is an Collision Phpunit Adapter contract.
18
 *
19
 * @author Nuno Maduro <[email protected]>
20
 */
21
interface Listener extends TestListener
0 ignored issues
show
Deprecated Code introduced by
The interface PHPUnit\Framework\TestListener has been deprecated with message: Use the `TestHook` interfaces instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
22
{
23
    /**
24
     * Renders the provided error
25
     * on the console.
26
     *
27
     * @param  \Throwable $t
28
     *
29
     * @return void
30
     */
31
    public function render(\Throwable $t);
32
}
33