init command tweak

This commit is contained in:
Fabio Ivona
2023-02-20 23:10:59 +01:00
parent 683910bff4
commit 64dbcf0a26
4 changed files with 89 additions and 5 deletions

7
stubs/init/TestCase.php Normal file
View File

@ -0,0 +1,7 @@
<?php
namespace Tests;
class TestCase extends \PHPUnit\Framework\TestCase
{
}

View File

@ -0,0 +1,5 @@
<?php
test('example', function () {
expect(true)->toBeTrue();
});