We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85284bd commit 13291ebCopy full SHA for 13291eb
.gitattributes
@@ -5,10 +5,8 @@
5
/.github export-ignore
6
/.gitattributes export-ignore
7
/.gitignore export-ignore
8
-/phpunit.xml.dist export-ignore
9
-/tests export-ignore
10
/.editorconfig export-ignore
11
-/.php_cs.dist export-ignore
12
-/psalm.xml export-ignore
13
-/psalm.xml.dist export-ignore
14
-/testbench.yaml export-ignore
+/tests export-ignore
+/phpunit.xml.dist export-ignore
+/.php-cs-fixer.dist export-ignore
+/phpstan.neon.dist export-ignore
tests/SkeletonTest.php renamed to tests/CsFixerTest.php
@@ -2,12 +2,13 @@
2
3
namespace Descom\Skeleton\Test;
4
+use Descom\Common\CsFixer;
use PHPUnit\Framework\TestCase;
-class SkeletonTest extends TestCase
+class CsFixerTest extends TestCase
{
public function testExample()
- $this->assertTrue(true);
+ $this->assertIsArray(CsFixer::rules());
}
0 commit comments