Ethereum PHP
PHP interface to Ethereum JSON-RPC API.
TestStatic.php
Go to the documentation of this file.
1 <?php
2 namespace Ethereum;
3 
18 // PHPUnit 6 introduced a breaking change that
19 // removed PHPUnit_Framework_TestCase as a base class,
20 // and replaced it with \PHPUnit\Framework\TestCase
21 if (!class_exists('\PHPUnit_Framework_TestCase') && class_exists('\PHPUnit\Framework\TestCase')) {
22  class_alias('\PHPUnit\Framework\TestCase', '\PHPUnit_Framework_TestCase');
23 }
24 
25 
31 abstract class TestStatic extends \PHPUnit_Framework_TestCase {}
Definition: Abi.php:3