File: BaseTestListener.php

package info (click to toggle)
php-mock-phpunit 2.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: php: 841; makefile: 19; sh: 7; xml: 7
file content (13 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace PHPUnit\Framework;

/**
 * Compatibility class to work with PHPUnit 7
 *
 * @internal
 */
abstract class BaseTestListener implements TestListener
{
    use TestListenerDefaultImplementation;
}