Skip to content

Commit

Permalink
added MimeTypeFactoryInterface.php
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilbourne committed Aug 5, 2024
1 parent a696fb6 commit c4b42eb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/http/mimetype/MimeTypeFactoryInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

/**
* @author: Doug Wilbourne (dougwilbourne@gmail.com)
*/

declare(strict_types=1);

namespace pvc\interfaces\http\mimetype;

/**
* Class MimeTypeFactoryInterface
*/
interface MimeTypeFactoryInterface
{
/**
* makeMimeType
* @return MimeTypeInterface
*/
public function makeMimeType(): MimeTypeInterface;
}

0 comments on commit c4b42eb

Please sign in to comment.