diff --git a/.github/workflows/pull-request-checks.yaml b/.github/workflows/pull-request-checks.yaml index effadc6..3dd441f 100644 --- a/.github/workflows/pull-request-checks.yaml +++ b/.github/workflows/pull-request-checks.yaml @@ -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 diff --git a/CHANGELOD.md b/CHANGELOD.md index 716f7f1..7baa5ff 100644 --- a/CHANGELOD.md +++ b/CHANGELOD.md @@ -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: diff --git a/src/Collection/CollectionInterface.php b/src/Collection/CollectionInterface.php index 48b8634..3ea6606 100644 --- a/src/Collection/CollectionInterface.php +++ b/src/Collection/CollectionInterface.php @@ -15,7 +15,7 @@ interface CollectionInterface extends FilterableInterface, FullnessInterface, IteratorAggregate, - MakableInterface, + MakeableInterface, MappableInterface, SortableInterface { diff --git a/src/Collection/MakableInterface.php b/src/Collection/MakeableInterface.php similarity index 84% rename from src/Collection/MakableInterface.php rename to src/Collection/MakeableInterface.php index e1125e7..10e3552 100644 --- a/src/Collection/MakableInterface.php +++ b/src/Collection/MakeableInterface.php @@ -4,7 +4,7 @@ namespace Temkaa\SimpleCollections\Collection; -interface MakableInterface +interface MakeableInterface { public static function make(array $elements): CollectionInterface; }