mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
13 lines
162 B
PHP
13 lines
162 B
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
use Psalm\Config;
|
|
|
|
class TestConfig extends Config
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|