From 5df01f7b54dce4a66d5007dd52b04401ce32671a Mon Sep 17 00:00:00 2001 From: Benjamin Blake Date: Thu, 20 Feb 2020 13:26:42 -0700 Subject: [PATCH] Moved the ApiCollectionInterface class + Move the ApiCollectionInterface class into a new "Collections/Interfaces/" folder --- src/Collections/ApiItemCollection.php | 2 +- src/Collections/{ => Interfaces}/ApiCollectionInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/Collections/{ => Interfaces}/ApiCollectionInterface.php (97%) diff --git a/src/Collections/ApiItemCollection.php b/src/Collections/ApiItemCollection.php index 01411a7..bcf8777 100644 --- a/src/Collections/ApiItemCollection.php +++ b/src/Collections/ApiItemCollection.php @@ -2,7 +2,7 @@ namespace Gitea\Collections; -use Gitea\Collections\ApiCollectionInterface; +use Gitea\Collections\Interfaces\ApiCollectionInterface; use \Countable; use \IteratorAggregate; diff --git a/src/Collections/ApiCollectionInterface.php b/src/Collections/Interfaces/ApiCollectionInterface.php similarity index 97% rename from src/Collections/ApiCollectionInterface.php rename to src/Collections/Interfaces/ApiCollectionInterface.php index 769284c..b7ebc02 100644 --- a/src/Collections/ApiCollectionInterface.php +++ b/src/Collections/Interfaces/ApiCollectionInterface.php @@ -1,6 +1,6 @@