From d142505195617480e05580957062fa2c2ab352f7 Mon Sep 17 00:00:00 2001 From: Mike Bennett Date: Mon, 19 Sep 2022 21:20:49 +0100 Subject: [PATCH] Readme formatting fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d24be5c..47dfa5e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Mingulay is a PHP library for parsing file information out of [Zip files](https: It searches for the End of Central Directory Record, parses out the data, and then uses this to retrieve the Central Directory Records which contain the metadata of the files in the Zip. ### Usage -Mingulay requires an object that implements the `Mingulay\SeekerInterface` interface. A LocalFileSeeker implementation is provided for working with Zip files on disk. +Mingulay requires an object that implements the `Mingulay\SeekerInterface` interface. A `LocalFileSeeker` implementation is provided for working with Zip files on disk. ```php $seeker = new \Mingulay\Seeker\LocalFileSeeker("src/Test/fixtures/single-file.zip");