Skip to content

Commit

Permalink
Move WordFormatter::class helper to php-forge/helper. (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Feb 25, 2024
1 parent 3ff7f24 commit b273405
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 82 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ Thumbs.db

# security private repo
auth.json

.vscode
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## 0.1.1 Under development
## 0.1.1 February 25, 2024

- Bug #334: Move `WordFormatter::class` helper to `php-forge/helper` package (@terabytesoftw)

## 0.1.0 February 23, 2024

Expand Down
56 changes: 0 additions & 56 deletions src/Helper/WordFormatter.php

This file was deleted.

25 changes: 0 additions & 25 deletions tests/Helper/WordFormatterTest.php

This file was deleted.

19 changes: 19 additions & 0 deletions tests/Method.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

declare(strict_types=1);

namespace PHPForge\Html\Tests;

use PHPForge\Html\Input\Search;
use PHPUnit\Framework\TestCase;

final class Method extends TestCase
{
public function testMethods(): void
{
$methods = get_class_methods(Search::class);
sort($methods);

var_dump(implode("\n", $methods));
}
}

0 comments on commit b273405

Please sign in to comment.