1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
psalm/tests/TestConfig.php

16 lines
244 B
PHP
Raw Normal View History

2016-12-14 18:28:38 +01:00
<?php
namespace Psalm\Tests;
use Psalm\Config;
class TestConfig extends Config
{
public function __construct()
{
parent::__construct();
2016-12-19 01:00:32 +01:00
$this->throw_exception = true;
$this->use_docblock_types = true;
2016-12-14 18:28:38 +01:00
}
}