1
0
Fork 0
php-language-server/tests/Validation/cases/self4.php

13 lines
227 B
PHP
Raw Permalink Normal View History

<?php
namespace MyNamespace;
class A
{
public static function suite()
{
$suite = new self('Database related tests');
$suite->addTestFile(__DIR__ . DS . 'Database' . DS . 'ConnectionTest.php');
}
}