Skip to content

Commit 6e3c238

Browse files
committed
Add dummy file so phpcs and phpstan can be tested
1 parent 31e2168 commit 6e3c238

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/DummyForAnalysis.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
/**
4+
* DummyForAnalysis class file.
5+
*
6+
* @package WordPress\AiClient
7+
*/
8+
9+
declare(strict_types=1);
10+
11+
namespace WordPress\AiClient;
12+
13+
/**
14+
* Class DummyForAnalysis
15+
*
16+
* This is a dummy class for testing that phpcs and phpstan are working.
17+
* It should be removed once we have a real class.
18+
*/
19+
class DummyForAnalysis
20+
{
21+
public function dummy(): void
22+
{
23+
// Placeholder.
24+
}
25+
}

0 commit comments

Comments
 (0)