File: BaseTestListener.php

package info (click to toggle)
php-mock-phpunit 2.15.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: php: 1,089; makefile: 20; xml: 8; sh: 7
file content (13 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (4)
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;
}