File tree Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 22.gitignore export-ignore
33.github export-ignore
44phpcs.xml.dist export-ignore
5+ phpunit.xml.dist export-ignore
56phpstan.neon.dist export-ignore
67phpstan-baseline.neon export-ignore
78scripts export-ignore
8- makefile export-ignore
9+ Makefile export-ignore
910src /Resources /themes /default /data export-ignore
11+ .editorconfig export-ignore
12+ /examples export-ignore
13+ /locale /Doctum.pot export-ignore
14+ /locale /* .po export-ignore
15+ /tests export-ignore
16+ CHANGELOG.md export-ignore
Original file line number Diff line number Diff line change 6161 },
6262 "autoload" : {
6363 "psr-4" : {
64- "Doctum\\ " : " src/" ,
64+ "Doctum\\ " : " src/"
65+ }
66+ },
67+ "autoload-dev" : {
68+ "psr-4" : {
6569 "Doctum\\ Tests\\ " : " tests/"
6670 }
6771 },
Original file line number Diff line number Diff line change @@ -2561,7 +2561,7 @@ parameters:
25612561 path : tests/Parser/NodeVisitorTest.php
25622562
25632563 -
2564- message : " #^Call to an undefined method Doctum\\\\ Tests\\\\ Renderer\\\\ RendererTest \\ :\\ :assertFileDoesNotExist\\ (\\ )\\ .$#"
2564+ message : " #^Call to an undefined method Doctum\\\\ Tests\\\\ Renderer\\\\ DiffTest \\ :\\ :assertFileDoesNotExist\\ (\\ )\\ .$#"
25652565 count : 1
25662566 path : tests/Renderer/DiffTest.php
25672567
Original file line number Diff line number Diff line change 11<?php
22
3- namespace Doctum \Tests \Command ;
3+ namespace Doctum \Tests \Console ;
44
55use Doctum \Console \Command \ParseCommand ;
66use Doctum \Console \Command \RenderCommand ;
Original file line number Diff line number Diff line change 22
33declare (strict_types = 1 );
44
5- namespace Doctum \Tests \Command ;
5+ namespace Doctum \Tests \Console ;
66
77use Doctum \Console \Command \ParseCommand ;
88use Doctum \Console \Command \RenderCommand ;
Original file line number Diff line number Diff line change 55use Doctum \Renderer \Diff ;
66use Doctum \Tests \AbstractTestCase ;
77
8- class RendererTest extends AbstractTestCase
8+ class DiffTest extends AbstractTestCase
99{
1010
1111 public function testIsPhpClass (): void
You can’t perform that action at this time.
0 commit comments