Skip to content

Commit

Permalink
Fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TemKaa1337 committed Aug 14, 2024
1 parent dff6590 commit 1866853
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
run: composer install --no-progress

- name: Run test suite
run: ./vendor/bin/phpunit tests/
run: ./vendor/bin/phpunit --testsuite units
6 changes: 5 additions & 1 deletion CHANGELOD.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### v0.0.3
##### Fixes:
- Fixed some typos in interface names.

### v0.0.2
##### Features:
- Added [MakebleInterface](src/Collection/MakableInterface.php).
- Added [MakeableInterface](src/Collection/MakeableInterface.php).

### v0.0.1
##### Features:
Expand Down
2 changes: 1 addition & 1 deletion src/Collection/CollectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface CollectionInterface extends
FilterableInterface,
FullnessInterface,
IteratorAggregate,
MakableInterface,
MakeableInterface,
MappableInterface,
SortableInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Temkaa\SimpleCollections\Collection;

interface MakableInterface
interface MakeableInterface
{
public static function make(array $elements): CollectionInterface;
}

0 comments on commit 1866853

Please sign in to comment.